chore: init

This commit is contained in:
2025-08-31 11:05:44 +07:00
parent b4450dd647
commit abbe4110a3
10 changed files with 3364 additions and 0 deletions

15
src/index.js Normal file
View File

@@ -0,0 +1,15 @@
/**
* Welcome to Cloudflare Workers! This is your first worker.
*
* - Run `npm run dev` in your terminal to start a development server
* - Open a browser tab at http://localhost:8787/ to see your worker in action
* - Run `npm run deploy` to publish your worker
*
* Learn more at https://developers.cloudflare.com/workers/
*/
export default {
async fetch(request, env, ctx) {
return new Response('Hello World!');
},
};