mirror of
https://github.com/TronoSfera/Law.git
synced 2026-05-18 18:13:46 +03:00
10 lines
585 B
Python
10 lines
585 B
Python
from fastapi import APIRouter
|
|
from app.api.public import requests, otp, quotes, uploads, chat, featured_staff
|
|
|
|
router = APIRouter()
|
|
router.include_router(requests.router, prefix="/requests", tags=["Public"])
|
|
router.include_router(otp.router, prefix="/otp", tags=["Public"])
|
|
router.include_router(quotes.router, prefix="/quotes", tags=["Public"])
|
|
router.include_router(featured_staff.router, prefix="/featured-staff", tags=["Public"])
|
|
router.include_router(uploads.router, prefix="/uploads", tags=["PublicFiles"])
|
|
router.include_router(chat.router, prefix="/chat", tags=["PublicChat"])
|