5 lines
139 B
Python
5 lines
139 B
Python
from fastapi import APIRouter
|
|
from .country import app as country_app
|
|
|
|
app = APIRouter()
|
|
app.include_router(country_app, prefix='/country') |