fix problems

This commit is contained in:
2026-08-05 12:22:45 +03:00
parent 4e14972cf6
commit 2da58c7483
8 changed files with 113 additions and 121 deletions
+1 -1
View File
@@ -3,10 +3,10 @@ from pathlib import Path
import uvicorn
from fastapi import FastAPI
from src.web.protected_routes.auth_routes import router as protected_router
from src.web.protected_routes.protected_user_action_routes import (
router as protected_user_action_routes,
)
from src.web.protected_routes.routes import router as protected_router
app=FastAPI(root_path="/")
app.include_router(router=protected_router)