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

9 lines
277 B
Python

from .articles import router as article_router
from .user_profile import router as user_profile_router
from fastapi import APIRouter
bff_router = APIRouter(prefix="/bff", tags=["bff"])
bff_router.include_router(article_router)
bff_router.include_router(user_profile_router)