This commit is contained in:
Андрей Дувакин 2024-12-21 11:13:27 +05:00
parent 5ceaf8cb0d
commit 1f24143557

View File

@ -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__)