24 lines
703 B
Python
24 lines
703 B
Python
# app/api/main.py
|
|
"""Summary description ....
|
|
|
|
This module provides classes and functions for:
|
|
- ....
|
|
- ....
|
|
- ....
|
|
"""
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from app.api.v1 import admin, auth, marketplace, product, shop, stats, stock
|
|
|
|
api_router = APIRouter()
|
|
|
|
# Include all route modules
|
|
api_router.include_router(admin.router, tags=["admin"])
|
|
api_router.include_router(auth.router, tags=["authentication"])
|
|
api_router.include_router(marketplace.router, tags=["marketplace"])
|
|
api_router.include_router(product.router, tags=["product"])
|
|
api_router.include_router(shop.router, tags=["shop"])
|
|
api_router.include_router(stats.router, tags=["statistics"])
|
|
api_router.include_router(stock.router, tags=["stock"])
|