import { json } from "@lib/helpers.ts"; import { fetchResource } from "@lib/marka/index.ts"; import { define } from "../../../utils.ts"; export const handler = define.handlers({ async GET(ctx) { const article = await fetchResource(`articles/${ctx.params.name}`); return json(article); }, });