From 1a7e7d432675ad3b1f972474ca9299fa9a45b662 Mon Sep 17 00:00:00 2001 From: Pyro57000 Date: Tue, 24 Jun 2025 16:02:29 -0500 Subject: [PATCH] added the start of the gui re-write not ready yet, but its getting there. --- pentest_tool/src/cli.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/pentest_tool/src/cli.rs b/pentest_tool/src/cli.rs index 6289040..8dfa015 100644 --- a/pentest_tool/src/cli.rs +++ b/pentest_tool/src/cli.rs @@ -225,6 +225,7 @@ pub fn run_command(cmd: String, } return (None, None); } + //change for stuff, one sec. match cmd.as_str(){ "list projects" | "lp" | "listp" | "list p" => {project_controls::list_projects(&projects, &display); return (None, None)}, "switch project" | "swp" | "switch p" | "switchp" => {project_controls::switch_project(&mut projects); return (None, None)},