e51f357b48
Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
189 B
Python
9 lines
189 B
Python
from __future__ import annotations
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
BACKEND = Path(__file__).resolve().parents[1]
|
|
if str(BACKEND) not in sys.path:
|
|
sys.path.insert(0, str(BACKEND))
|