deno.land / x / fresh@1.1.1 / tests / fixture / routes / api / get_only.ts
12345678910111213export const handler = { GET() { return new Response("Get fresh!", { headers: { "Content-Type": "application/json; charset=utf-8", }, }); }, NOTAMETHOD() { throw new Error("unreachable"); },};
Version Info