Files
core/__init__.py

7 lines
194 B
Python
Raw Normal View History

2024-02-19 16:29:05 +03:00
import sys
2025-07-31 18:55:59 +03:00
from pathlib import Path
2024-02-19 16:29:05 +03:00
# Получаем путь к корневой директории проекта
2025-07-31 18:55:59 +03:00
root_path = Path(__file__).parent.parent
sys.path.append(str(root_path))