9 lines
305 B
Python
9 lines
305 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v2.hot_opening_replicate import router as hot_opening_router
|
|
from app.api.v2.shot_replicate import router as shot_replicate_router
|
|
|
|
api_router_v2 = APIRouter()
|
|
api_router_v2.include_router(hot_opening_router)
|
|
api_router_v2.include_router(shot_replicate_router)
|