initial commit: dynamic infra tooling cli

This commit is contained in:
Fredrick Amnehagen 2026-02-05 11:29:34 +01:00
commit db843ceec8
9 changed files with 339 additions and 0 deletions

11
bin/infra Executable file
View file

@ -0,0 +1,11 @@
#!/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()