mirror of
https://github.com/fastapi-practices/fastapi_best_architecture.git
synced 2026-03-13 09:31:31 +08:00
11 lines
206 B
Python
11 lines
206 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
import sys
|
|
|
|
from backend.core.path_conf import BASE_PATH
|
|
|
|
from .actions import * # noqa: F403
|
|
|
|
# 导入项目根目录
|
|
sys.path.append(str(BASE_PATH.parent))
|