This commit is contained in:
2025-12-12 14:40:04 +08:00
commit 45ff5a62e3
36 changed files with 5640 additions and 0 deletions

5
back/apis/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
from fastapi import APIRouter
from .country import app as country_app
app = APIRouter()
app.include_router(country_app, prefix='/country')