Skip to content

Commit

Permalink
Move healthcheck under api
Browse files Browse the repository at this point in the history
  • Loading branch information
mpgxvii committed Sep 28, 2024
1 parent c3fa918 commit c327495
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes.
2 changes: 1 addition & 1 deletion pages/health/alive.ts → pages/api/health/ready.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { NextApiRequest, NextApiResponse } from "next"

export default function handler(req: NextApiRequest, res: NextApiResponse) {
return res.status(200).send("ok")
res.status(200).send("ok")
}

0 comments on commit c327495

Please sign in to comment.