run_simple_tui.py
1 #!/usr/bin/env python3 2 """ 3 Run the simplified Kamaji TUI. 4 """ 5 6 import sys 7 import os 8 9 # Add the project root to Python path 10 project_root = os.path.dirname(os.path.abspath(__file__)) 11 sys.path.insert(0, project_root) 12 13 from kamaji.commands.tui_simple import run_tui 14 15 if __name__ == "__main__": 16 run_tui()