from fastapi import APIRouter from app.api.api_v1.endpoints import auth, users, products, categories, suppliers, inventory, orders api_router = APIRouter() api_router.include_router(auth.router, prefix="/auth", tags=["Authentication"]) api_router.include_router(users.router, prefix="/users", tags=["Users"]) api_router.include_router(products.router, prefix="/products", tags=["Products"]) api_router.include_router(categories.router, prefix="/categories", tags=["Categories"]) api_router.include_router(suppliers.router, prefix="/suppliers", tags=["Suppliers"]) api_router.include_router(inventory.router, prefix="/inventory", tags=["Inventory"]) api_router.include_router(orders.router, prefix="/orders", tags=["Orders"])