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