language-learning-app/api/app/routers/bff/main.py

14 lines
447 B
Python
Raw Permalink Normal View History

from .account import router as account_router
from .articles import router as article_router
2026-03-27 10:32:46 +00:00
from .user_profile import router as user_profile_router
from .packs import router as packs_router
from fastapi import APIRouter
bff_router = APIRouter(prefix="/bff", tags=["bff"])
bff_router.include_router(account_router)
bff_router.include_router(article_router)
2026-03-27 10:32:46 +00:00
bff_router.include_router(user_profile_router)
bff_router.include_router(packs_router)