All checks were successful
Docker Deploy / build-and-push (push) Successful in 5m9s
5 lines
158 B
TypeScript
5 lines
158 B
TypeScript
import { FreshContext } from "$fresh/server.ts";
|
|
|
|
export const handler = (_req: Request, _ctx: FreshContext): Response => {
|
|
return new Response("pong");
|
|
};
|