first commit

This commit is contained in:
2026-07-12 22:06:20 +03:00
commit 2cf89fc5e6
26 changed files with 1957 additions and 0 deletions

18
main.py Normal file
View File

@@ -0,0 +1,18 @@
from fastapi import FastAPI
from src.web.protected import router as protected_routers
import uvicorn
app=FastAPI(root_path="/")
app.include_router(protected_routers)
@app.get("")
def root()->dict:
return {"root":"true"}
def main():
uvicorn.run("main:app", reload=True)
if __name__ == "__main__":
main()