fix healthz endpoint

This commit is contained in:
StarAppeal
2025-09-06 04:39:14 +02:00
parent b2238bbe65
commit 3d286fbeca
+1 -1
View File
@@ -33,7 +33,7 @@ app.use((_req, res, next) => {
app.use(express.json({limit: "2mb"}));
app.get("/healthz", (_req, res) => res.status(200).send({status: "ok"}));
app.get("/api/healthz", (_req, res) => res.status(200).send({status: "ok"}));
const server = app.listen(port, () => {
console.log(`Server is running on port ${port}`);