atri.dad/routes/api/ping.ts
Atridad Lahiji 871000c333
All checks were successful
Docker Deploy / build-and-push (push) Successful in 5m9s
Added a weird little chat for shits and giggles
2025-04-26 01:34:49 -06:00

5 lines
158 B
TypeScript

import { FreshContext } from "$fresh/server.ts";
export const handler = (_req: Request, _ctx: FreshContext): Response => {
return new Response("pong");
};