33 lines
1.5 KiB
Python
33 lines
1.5 KiB
Python
|
|
from fastapi import APIRouter
|
||
|
|
|
||
|
|
from backend.app.api.ai import router as ai_router
|
||
|
|
from backend.app.api.audit_logs import router as audit_logs_router
|
||
|
|
from backend.app.api.auth import router as auth_router
|
||
|
|
from backend.app.api.configs import router as configs_router
|
||
|
|
from backend.app.api.customers import router as customers_router
|
||
|
|
from backend.app.api.files import router as files_router
|
||
|
|
from backend.app.api.logistics import router as logistics_router
|
||
|
|
from backend.app.api.orders import router as orders_router
|
||
|
|
from backend.app.api.products import router as products_router
|
||
|
|
from backend.app.api.reminders import router as reminders_router
|
||
|
|
from backend.app.api.reports import router as reports_router
|
||
|
|
from backend.app.api.routes import router as base_router
|
||
|
|
from backend.app.api.suppliers import router as suppliers_router
|
||
|
|
from backend.app.api.system import router as system_router
|
||
|
|
|
||
|
|
api_router = APIRouter()
|
||
|
|
api_router.include_router(base_router)
|
||
|
|
api_router.include_router(auth_router)
|
||
|
|
api_router.include_router(orders_router)
|
||
|
|
api_router.include_router(customers_router)
|
||
|
|
api_router.include_router(products_router)
|
||
|
|
api_router.include_router(suppliers_router)
|
||
|
|
api_router.include_router(logistics_router)
|
||
|
|
api_router.include_router(files_router)
|
||
|
|
api_router.include_router(ai_router)
|
||
|
|
api_router.include_router(reminders_router)
|
||
|
|
api_router.include_router(reports_router)
|
||
|
|
api_router.include_router(configs_router)
|
||
|
|
api_router.include_router(audit_logs_router)
|
||
|
|
api_router.include_router(system_router)
|