changed the cli to a tui environment.

This commit is contained in:
2026-05-20 13:33:53 -05:00
parent 3eeecb0010
commit a907de8ff3
6 changed files with 1376 additions and 217 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
use clap::Parser;
use std::{env, path::PathBuf, process::exit};
use tetanus::AppState;
use tetanus::funcs::cli;
use tetanus::funcs::*;
mod install;
@@ -59,6 +59,6 @@ fn main() {
exit(1);
}
appstate.initialize_modules();
cli(appstate, rx);
run_tui(appstate, rx);
}
}