8 lines
174 B
Python
8 lines
174 B
Python
|
|
from .articles import router as article_router
|
||
|
|
|
||
|
|
from fastapi import APIRouter
|
||
|
|
|
||
|
|
bff_router = APIRouter(prefix="/bff", tags=["bff"])
|
||
|
|
|
||
|
|
bff_router.include_router(article_router)
|