FiWiManager/hub_manager.py

14 lines
296 B
Python
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env python3
"""Thin entry: JSON maps and remote_ssh.env resolve to this files 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())