mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 13:00:56 +03:00
@@ -0,0 +1,13 @@
|
||||
import { Request, Response, NextFunction } from 'express'
|
||||
|
||||
const getPing = async (req: Request, res: Response, next: NextFunction) => {
|
||||
try {
|
||||
return res.status(200).send('pong')
|
||||
} catch (error) {
|
||||
next(error)
|
||||
}
|
||||
}
|
||||
|
||||
export default {
|
||||
getPing
|
||||
}
|
||||
Reference in New Issue
Block a user