Files
ops-hub/scripts/interhub-gate-probe.py

16 lines
324 B
Python

#!/usr/bin/env python3
"""Run the Inter-Hub ops-hub bootstrap gate probe."""
from __future__ import annotations
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).resolve().parents[1] / "src"))
from ops_hub.interhub_gate_probe import main
if __name__ == "__main__":
raise SystemExit(main())