Final Commit on this branch, TUI upgrade. Further work on Rust Implementation. Rust branch was branched a commit earlier, first commit by me on that branch will be to replicate the TUI change here

This commit is contained in:
2025-11-03 10:09:49 -05:00
parent b3f48eb4df
commit e6a38888dd
3 changed files with 431 additions and 177 deletions
+2 -2
View File
@@ -30,7 +30,7 @@ import urllib3
from services.API import AirlockAPIWrapper
from services.security import getAPI
from utils.setup import get_base_directory, setup
from utils.tui import run_menu
from utils.TUI import run_AirlockTools
from utils.utils import irtang
urllib3.disable_warnings(
@@ -70,8 +70,8 @@ def main():
base_url=str(os.getenv("URL")),
api_key=api_key,
)
run_AirlockTools(api)
run_menu(api)
if __name__ == "__main__":