CoastalCommitsPastes/src/pages/api/health.ts

10 lines
189 B
TypeScript
Raw Normal View History

2022-11-14 01:30:09 -08:00
import { NextApiRequest, NextApiResponse } from "next"
const handler = async (_: NextApiRequest, res: NextApiResponse) => {
2022-12-18 18:18:32 -08:00
return res.json({
status: "UP"
})
2022-11-14 01:30:09 -08:00
}
export default handler