made the rust_victim more organized and easier to install
This commit is contained in:
+1
-2
@@ -1,7 +1,6 @@
|
||||
use clap::Parser;
|
||||
use rand::RngExt;
|
||||
use rand::distr::Alphanumeric;
|
||||
use std::sync::mpsc::channel;
|
||||
use std::sync::{Arc, Mutex};
|
||||
use std::thread::{sleep, spawn};
|
||||
use std::time::Duration;
|
||||
@@ -154,7 +153,7 @@ async fn main() {
|
||||
let handles = Arc::new(Mutex::new(Vec::new()));
|
||||
let handles_clone = handles.clone();
|
||||
let primary_handle = spawn(move || {
|
||||
println!("entering tui...");
|
||||
println!("entering startup function...");
|
||||
let _ = startup(appstate, false, handles_clone);
|
||||
});
|
||||
if let Ok(mut lock) = handles.lock() {
|
||||
|
||||
Reference in New Issue
Block a user