Files
fastapi_best_architecture/backend/app/task/__init__.py
2025-07-14 19:17:24 +08:00

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))