mirror of
https://github.com/mendableai/firecrawl.git
synced 2025-11-30 17:18:56 +00:00
7 lines
232 B
TypeScript
7 lines
232 B
TypeScript
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" });
|
|
}
|