health check API route

This commit is contained in:
Max Leiter 2022-11-14 01:30:09 -08:00
parent 2b783145d4
commit f81999241f

View file

@ -0,0 +1,9 @@
import { NextApiRequest, NextApiResponse } from "next"
const handler = async (_: NextApiRequest, res: NextApiResponse) => {
return res.json({
status: "UP"
})
}
export default handler