23 lines
640 B
Python
23 lines
640 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, vendor, 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(vendor.router, tags=["vendor"])
|
|
api_router.include_router(stats.router, tags=["statistics"])
|
|
api_router.include_router(stock.router, tags=["stock"])
|