Files
2026-08-21 08:37:51 -03:00

10 lines
186 B
Python

from pathlib import Path
import sys
ROOT_DIR = Path(__file__).resolve().parent.parent
SRC_DIR = ROOT_DIR / "src"
if str(SRC_DIR) not in sys.path:
sys.path.insert(0, str(SRC_DIR))