feat: add interhub bootstrap helper
This commit is contained in:
parent
9fce939d29
commit
6aff34cc5b
11 changed files with 1197 additions and 0 deletions
15
scripts/interhub-gate-probe.py
Normal file
15
scripts/interhub-gate-probe.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#!/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())
|
||||
Loading…
Add table
Add a link
Reference in a new issue