Files
firecrawl/apps/api/src/controllers/v0/readiness.ts
T

7 lines
232 B
TypeScript
Raw Normal View History

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" });
}