2025-12-06 01:03:08 +09:00

7 lines
161 B
Python

import sys
from pathlib import Path
# srcディレクトリをパスに追加
src_path = Path(__file__).parent.parent / "src"
sys.path.insert(0, str(src_path))