14 lines
296 B
Python
Executable File
14 lines
296 B
Python
Executable File
#!/usr/bin/env python3
|
||
"""Thin entry: JSON maps and remote_ssh.env resolve to this file’s directory."""
|
||
|
||
import os
|
||
|
||
import hubmgr.paths as _paths
|
||
|
||
_paths.configure(os.path.dirname(os.path.abspath(__file__)))
|
||
|
||
from hubmgr.cli import main
|
||
|
||
if __name__ == "__main__":
|
||
raise SystemExit(main())
|