mirror of
https://github.com/fastapi-practices/fastapi-best-architecture.git
synced 2026-09-26 14:23:52 +00:00
* Update the ruff rules and format the code * Update the per-file-ignores * Update the ci * Update rules * Fix codes * Fix pagination * Update rules
10 lines
322 B
Python
10 lines
322 B
Python
from fastapi import APIRouter
|
|
|
|
from backend.app.admin.api.v1.auth.auth import router as auth_router
|
|
from backend.app.admin.api.v1.auth.captcha import router as captcha_router
|
|
|
|
router = APIRouter(prefix='/auth')
|
|
|
|
router.include_router(auth_router, tags=['授权'])
|
|
router.include_router(captcha_router, tags=['验证码'])
|