14 lines
303 B
Python
Executable File
14 lines
303 B
Python
Executable File
#!/usr/bin/env python3
|
||
"""Fi-Wi test framework CLI — maps and SSH env files resolve to this file’s 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())
|