junk/entemu/routes/api/[name].tsx

11 lines
236 B
TypeScript
Raw Permalink Normal View History

2024-12-17 23:33:24 +08:00
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)}!`,
);
},
});