Skip to content

Commit

Permalink
refactor: ♻️ update healthcheck endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
slugb0t committed Jul 11, 2024
1 parent 8f01881 commit 52bdb98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default async (app, { getRouter }) => {

router.use(express.static("public"));

router.get("/health-check", (req, res) => {
router.get("/healthcheck", (req, res) => {
res.status(200).send("Health check passed");
});

Expand Down

0 comments on commit 52bdb98

Please sign in to comment.