health check API route

pull/135/head
Max Leiter 3 years ago
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…
Cancel
Save