10 lines
268 B
Python
10 lines
268 B
Python
from fastapi import APIRouter
|
|
from .payment_manager_controller import router as pmc
|
|
from .stripe_manager_controller import router as smc
|
|
|
|
|
|
router = APIRouter(prefix="/payment")
|
|
|
|
router.include_router(pmc, tags=["payment"])
|
|
router.include_router(smc, tags=["payment"])
|