refactor: update healtcheck

This commit is contained in:
Mauricio Siu 2024-09-30 00:54:49 -06:00
parent 1c9b704ecc
commit 81a41a7f31

View File

@ -31,6 +31,11 @@ app.post("/publish", async (c) => {
return c.json({ message: `Despliegue encolado para el usuario ${userId}` });
});
app.get("/health", async (c) => {
return c.json({ status: "ok" });
});
// await redisClient.connect();
// await redisClient.flushAll();