Initial commit - Virome API

This commit is contained in:
Your Name
2026-01-10 14:52:59 +01:00
commit 1ae246c7e4
8 changed files with 2180 additions and 0 deletions

14
deno.json Normal file
View File

@@ -0,0 +1,14 @@
{
"name": "music-api",
"version": "1.0.0",
"tasks": {
"start": "deno run --allow-net --allow-env mod.ts",
"dev": "deno run --watch --allow-net --allow-env mod.ts"
},
"imports": {
"std/": "https://deno.land/std@0.208.0/"
},
"compilerOptions": {
"strict": true
}
}