Fire-crawl / src /controllers /v1 /readiness.ts
Echo-AI-official's picture
Upload 280 files
0e759d2 verified
import { Request, Response } from "express";
export async function readinessController(req: Request, res: Response) {
// TODO: add checks when the application is ready to serve traffic
res.status(200).json({ status: "ok" });
}