mirror of
https://github.com/fastapi-practices/fastapi_best_architecture.git
synced 2026-03-13 09:31:31 +08: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
9 lines
260 B
Python
9 lines
260 B
Python
from fastapi import APIRouter
|
|
|
|
from backend.core.conf import settings
|
|
from backend.plugin.email.api.v1.email import router as email_router
|
|
|
|
v1 = APIRouter(prefix=f'{settings.FASTAPI_API_V1_PATH}/emails', tags=['电子邮件'])
|
|
|
|
v1.include_router(email_router)
|