11 lines
273 B
Python
Executable file
11 lines
273 B
Python
Executable file
#!/usr/bin/env python3
|
|
import sys
|
|
import os
|
|
|
|
# Add parent directory to sys.path to allow running without installation
|
|
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
|
|
|
from infra_cli.main import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|