Add Core Hub operator CLI wrappers

This commit is contained in:
2026-06-27 21:23:52 +02:00
parent 81a3a1daa9
commit 4b9c216070
7 changed files with 621 additions and 2 deletions

7
scripts/core_hub_cli.py Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env python3
from __future__ import annotations
from core_hub.operator_cli import main
if __name__ == "__main__":
raise SystemExit(main())