Access tokens 0.1.0

This commit is contained in:
2026-07-23 11:13:52 +03:00
parent 8e66161ddd
commit 4d61d873b5
10 changed files with 297 additions and 210 deletions

View File

@@ -1,7 +1,9 @@
from fastapi import FastAPI
from src.web.protected_routes.routes import router as protected_router
import uvicorn
app=FastAPI(root_path="/")
app.include_router(router=protected_router)
@app.get("")
def root()->dict: