diff --git a/client/pages/api/health.ts b/client/pages/api/health.ts new file mode 100644 index 00000000..efd4dbf8 --- /dev/null +++ b/client/pages/api/health.ts @@ -0,0 +1,9 @@ +import { NextApiRequest, NextApiResponse } from "next" + +const handler = async (_: NextApiRequest, res: NextApiResponse) => { + return res.json({ + status: "UP" + }) +} + +export default handler