Initial commit

This commit is contained in:
shafat420
2025-04-25 12:18:41 +06:00
commit 72eda2bf5c
18 changed files with 3865 additions and 0 deletions

15
vercel.json Normal file
View File

@@ -0,0 +1,15 @@
{
"version": 2,
"builds": [
{
"src": "src/index.js",
"use": "@vercel/node"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "src/index.js"
}
]
}