feat: add health endpoint for frontend app

This commit is contained in:
UndefinedPony 2024-12-31 11:11:33 +01:00
parent 638fbe17a6
commit ed5936ede7

View File

@ -0,0 +1,8 @@
import type { NextApiRequest, NextApiResponse } from "next";
export default async function handler(
req: NextApiRequest,
res: NextApiResponse,
) {
return res.status(200).json({ ok: true });
}