UmberHubManager/fiwi.py

14 lines
303 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
"""Fi-Wi test framework CLI — maps and SSH env files resolve to this files directory."""
import os
import fiwi.paths as _paths
_paths.configure(os.path.dirname(os.path.abspath(__file__)))
from fiwi.cli import main
if __name__ == "__main__":
raise SystemExit(main())