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