This commit is contained in:
fengchuanhn@gmail.com
2026-05-15 18:52:29 +08:00
commit cccd75767b
29 changed files with 958 additions and 0 deletions

6
app/api/v1/router.py Normal file
View File

@@ -0,0 +1,6 @@
from fastapi import APIRouter
from app.api.v1 import auth
api_router = APIRouter()
api_router.include_router(auth.router)