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