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 -1
View File
@@ -53,8 +53,9 @@ def otp_generate(api: AirlockAPIWrapper):
if duration_selected is not None:
for agent in agents:
logging.info(f"Querying API for {agent.hostname}")
otp_code = api.otp_generate(agent.agentid, duration_selected, purpose)
logger.info(f"Generated OTP for {agent.hostname}: {otp_code}")
logger.debug(f"Generated OTP for {agent.hostname}: {otp_code}")
otp_dict[agent.hostname] = otp_code
print(colorText("Requested Codes:", "green"))