feature: v1

This commit is contained in:
Alexander Nicholson 4584443+DragonStuff@users.noreply.github.com
2024-11-19 00:48:26 +09:00
parent 6b1e6c945f
commit 6d8acb2752
17 changed files with 794 additions and 2 deletions

11
deno.json Normal file
View File

@@ -0,0 +1,11 @@
{
"tasks": {
"dev": "deno run --allow-net --allow-env --allow-read --watch src/main.ts",
"start": "deno run --allow-net --allow-env --allow-read src/main.ts"
},
"imports": {
"$std/": "https://deno.land/std@0.208.0/",
"hono": "https://deno.land/x/hono@v4.3.11/mod.ts",
"hono/": "https://deno.land/x/hono@v4.3.11/"
}
}