Files
ca_auto_table/back/apis/country/__init__.py
2025-11-20 11:42:18 +08:00

10 lines
352 B
Python

from fastapi import APIRouter
from .info.view import app as info_app
from .food.view import app as food_app
from .shop.view import app as shop_app
app = APIRouter()
app.include_router(info_app, prefix='/info', tags=['信息'])
app.include_router(food_app, prefix='/food', tags=['食物'])
app.include_router(shop_app, prefix='/shop', tags=['商店'])