diff --git a/__init__.py b/__init__.py index e69de29..99bd4ed 100644 --- a/__init__.py +++ b/__init__.py @@ -0,0 +1,6 @@ +import os +import sys + +# Получаем путь к корневой директории проекта +root_path = os.path.abspath(os.path.dirname(__file__)) +sys.path.append(root_path)