mirror of
https://github.com/fastapi-practices/fastapi-best-architecture.git
synced 2026-09-21 21:15:13 +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
9 lines
159 B
Python
9 lines
159 B
Python
import sys
|
|
|
|
from backend.core.path_conf import BASE_PATH
|
|
|
|
from .actions import * # noqa: F403
|
|
|
|
# 导入项目根目录
|
|
sys.path.append(str(BASE_PATH.parent))
|