6 lines
187 B
Python
6 lines
187 B
Python
"""services/ 루트를 sys.path에 추가 — from _shared... import 가능하게."""
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
sys.path.insert(0, str(Path(__file__).resolve().parent.parent))
|