Files
deno/fresh-project/routes/api/[name].tsx
T
2025-10-25 21:17:18 +02:00

11 lines
236 B
TypeScript

import { define } from "../../utils.ts";
export const handler = define.handlers({
GET(ctx) {
const name = ctx.params.name;
return new Response(
`Hello, ${name.charAt(0).toUpperCase() + name.slice(1)}!`,
);
},
});