mirror of
https://github.com/mendableai/firecrawl.git
synced 2025-08-03 22:39:31 +00:00
7 lines
257 B
TypeScript
7 lines
257 B
TypeScript
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" });
|
|
}
|