10 lines
186 B
Python
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))
|