mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
9 lines
196 B
TypeScript
9 lines
196 B
TypeScript
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
export default async function handler(
|
|
req: NextApiRequest,
|
|
res: NextApiResponse,
|
|
) {
|
|
return res.status(200).json({ ok: true });
|
|
}
|