initial commit

This commit is contained in:
2026-04-07 03:58:35 -04:00
commit ce41bca422
17 changed files with 1184 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import uvicorn
if __name__ == "__main__":
uvicorn.run(
"server.main:app",
host="0.0.0.0",
port=8000,
reload=False,
log_level="info",
)