mirror of
http://88.130.71.182:3000/BlitTech/deals24togo_be.git
synced 2026-06-12 23:33:21 +00:00
28 lines
647 B
Python
28 lines
647 B
Python
"""Aggregate all v1 routers."""
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from app.api.v1.endpoints import (
|
|
agencies,
|
|
auth,
|
|
categories,
|
|
favorites,
|
|
listings,
|
|
messages,
|
|
payments,
|
|
uploads,
|
|
users,
|
|
)
|
|
|
|
api_router = APIRouter(prefix="/api/v1")
|
|
|
|
api_router.include_router(auth.router)
|
|
api_router.include_router(users.router)
|
|
api_router.include_router(agencies.router)
|
|
api_router.include_router(categories.router)
|
|
api_router.include_router(listings.router)
|
|
api_router.include_router(messages.router)
|
|
api_router.include_router(favorites.router)
|
|
api_router.include_router(uploads.router)
|
|
api_router.include_router(payments.router)
|