Fire-crawl / src /controllers /v1 /liveness.ts
Echo-AI-official's picture
Upload 280 files
0e759d2 verified
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" });
}