Files
ca_auto_table/app/apis/__init__.py

5 lines
139 B
Python
Raw Normal View History

2025-11-18 16:46:04 +08:00
from fastapi import APIRouter
from .country import app as country_app
app = APIRouter()
app.include_router(country_app, prefix='/country')