add base files

This commit is contained in:
2025-09-28 11:06:59 +02:00
parent a0f05e8eb5
commit 12a02b07b6
14 changed files with 1128 additions and 0 deletions

6
main.py Normal file
View File

@@ -0,0 +1,6 @@
from app.main import app
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=5001)