feat: 切换邮箱认证并重构前后端启动与门禁

This commit is contained in:
qzl
2026-04-02 18:39:35 +08:00
parent 92cdfd9fca
commit 31594558eb
116 changed files with 5608 additions and 628 deletions
+9
View File
@@ -0,0 +1,9 @@
from __future__ import annotations
from fastapi import APIRouter
from v1.auth.router import router as auth_router
router = APIRouter(prefix="/api/v1")
router.include_router(auth_router)