feat: mv data folder to root

This commit is contained in:
qixinbo
2026-03-27 15:59:23 +08:00
parent 37070d7896
commit 5d479bed68
18 changed files with 175 additions and 39 deletions
+2 -1
View File
@@ -1,10 +1,11 @@
from pathlib import Path
from app.core.artifacts import extract_artifacts
from app.core.data_root import get_data_root
def _backend_data_root() -> Path:
return Path(__file__).resolve().parents[1] / "data"
return get_data_root()
def test_extract_artifacts_from_local_and_tool_paths() -> None: