feat: Better structure, add tests

This commit is contained in:
2026-05-09 17:38:37 +03:00
parent 3750804145
commit 827ec85907
9 changed files with 913 additions and 157 deletions
+9
View File
@@ -0,0 +1,9 @@
from __future__ import annotations
import sys
from pathlib import Path
BACKEND_ROOT = Path(__file__).resolve().parent.parent
if str(BACKEND_ROOT) not in sys.path:
sys.path.insert(0, str(BACKEND_ROOT))