12 lines
273 B
Text
12 lines
273 B
Text
|
|
#!/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()
|