Nick: rm wip

This commit is contained in:
Nicolas
2024-08-26 17:16:44 -03:00
parent 6f68678b5d
commit 98a770f38f
6 changed files with 0 additions and 309 deletions
+6
View File
@@ -0,0 +1,6 @@
import { Request, Response } from "express";
export async function livenessController(req: Request, res: Response) {
//TODO: add checks if the application is live and healthy like checking the redis connection
res.status(200).json({ status: "ok" });
}