add fresh project

This commit is contained in:
2025-10-25 21:17:18 +02:00
parent 887ca6aa23
commit 08a11b81df
23 changed files with 1880 additions and 12 deletions
+10
View File
@@ -0,0 +1,10 @@
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)}!`,
);
},
});