import { Handlers } from "$fresh/server.ts"; import { json } from "@lib/helpers.ts"; import { fetchResource } from "@lib/resources.ts"; export const handler: Handlers = { async GET() { const recipes = await fetchResource("recipes"); return json(recipes); }, };