mirror of https://github.com/MaxLeiter/Drift
health check API route
parent
2b783145d4
commit
f81999241f
@ -0,0 +1,9 @@
|
||||
import { NextApiRequest, NextApiResponse } from "next"
|
||||
|
||||
const handler = async (_: NextApiRequest, res: NextApiResponse) => {
|
||||
return res.json({
|
||||
status: "UP"
|
||||
})
|
||||
}
|
||||
|
||||
export default handler
|
||||
Loading…
Reference in New Issue