From 1f24143557d136f56249dee668ad380ee0522500 Mon Sep 17 00:00:00 2001 From: andrei Date: Sat, 21 Dec 2024 11:13:27 +0500 Subject: [PATCH] ._. --- app/main.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/app/main.py b/app/main.py index c4f7409..e8752d3 100644 --- a/app/main.py +++ b/app/main.py @@ -4,17 +4,17 @@ import logging from starlette.middleware.cors import CORSMiddleware -from app.infrastructure.database.database import init_db -from app.infrastructure.fastapi.accessory_routes import router as accessory_router -from app.infrastructure.fastapi.city_routes import router as city_router -from app.infrastructure.fastapi.delivery_accessory_routes import router as delivery_accessory_router -from app.infrastructure.fastapi.delivery_order_routes import router as delivery_order_router -from app.infrastructure.fastapi.federal_district_routes import router as federal_district_router -from app.infrastructure.fastapi.role_routes import router as role_router -from app.infrastructure.fastapi.status_routes import router as status_router -from app.infrastructure.fastapi.total_order_routes import router as total_order_router -from app.infrastructure.fastapi.truck_routes import router as truck_router -from app.infrastructure.fastapi.user_routes import router as user_router +from infrastructure.database.database import init_db +from infrastructure.fastapi.accessory_routes import router as accessory_router +from infrastructure.fastapi.city_routes import router as city_router +from infrastructure.fastapi.delivery_accessory_routes import router as delivery_accessory_router +from infrastructure.fastapi.delivery_order_routes import router as delivery_order_router +from infrastructure.fastapi.federal_district_routes import router as federal_district_router +from infrastructure.fastapi.role_routes import router as role_router +from infrastructure.fastapi.status_routes import router as status_router +from infrastructure.fastapi.total_order_routes import router as total_order_router +from infrastructure.fastapi.truck_routes import router as truck_router +from infrastructure.fastapi.user_routes import router as user_router logging.basicConfig(level=logging.INFO) logger = logging.getLogger(__name__)