This commit is contained in:
roma-dxunvrs
2025-11-30 12:38:46 +03:00
commit 27466a255f
17 changed files with 250 additions and 0 deletions

9
main.py Normal file
View File

@@ -0,0 +1,9 @@
from fastapi import FastAPI
from app.routers import demo
import uvicorn
app = FastAPI()
app.include_router(demo.router)
if __name__ == "__main__":
uvicorn.run("main:app", reload=True)