chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:36:30 +08:00
commit 55ab4e4a73
473 changed files with 72932 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
from pathlib import Path
def get_eg_cache_root():
root = Path.home() / Path(".easygraph/")
root.mkdir(parents=True, exist_ok=True)
return root
CACHE_ROOT = get_eg_cache_root()
DATASETS_ROOT = CACHE_ROOT / "datasets"
REMOTE_ROOT = "https://download.moon-lab.tech:28501/"
REMOTE_DATASETS_ROOT = REMOTE_ROOT + "datasets/"