Added health check endpoint

This commit is contained in:
Noah Halstead 2025-03-12 14:40:44 -04:00
parent c0f36d5a72
commit ec85bd7758

View File

@ -91,6 +91,13 @@ app.get("/", (req, res) => {
return res.status(200).send("OK");
});
app.get("/healthz", (req, res) => {
return res.status(200).send({
ready: true,
time: new Date()
})
});
app.get(
"/me",
asyncAuthGuard,