feat: add interhub bootstrap helper

This commit is contained in:
2026-06-17 00:17:59 +02:00
parent 9fce939d29
commit 6aff34cc5b
11 changed files with 1197 additions and 0 deletions

View 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())