mirror of
https://github.com/fastapi-practices/fastapi-best-architecture.git
synced 2026-09-21 13:12:24 +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
356 B
Python
10 lines
356 B
Python
from fastapi import APIRouter
|
|
|
|
from backend.app.admin.api.v1.log.login_log import router as login_log
|
|
from backend.app.admin.api.v1.log.opera_log import router as opera_log
|
|
|
|
router = APIRouter(prefix='/logs')
|
|
|
|
router.include_router(login_log, prefix='/login', tags=['登录日志'])
|
|
router.include_router(opera_log, prefix='/opera', tags=['操作日志'])
|