mirror of
https://github.com/turbomaster95/coderrrrr.git
synced 2025-05-12 12:50:15 +00:00
8 lines
237 B
TypeScript
8 lines
237 B
TypeScript
import type { VercelRequest, VercelResponse } from '@vercel/node';
|
|
|
|
export default function (req: VercelRequest, res: VercelResponse) {
|
|
res.statusCode = 200;
|
|
res.setHeader("Content-Type", `application/jrd+json`);
|
|
res.end('ok');
|
|
};
|