mirror of
https://github.com/HKUDS/OpenSpace.git
synced 2026-08-28 05:15:00 +00:00
13 lines
259 B
Python
13 lines
259 B
Python
#!/usr/bin/env python3
|
|
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
import sys
|
|
|
|
sys.path.insert(0, str(Path(__file__).resolve().parents[1]))
|
|
|
|
from openspace.codex_mcp_guard import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|