Skip to content

Commit 967052a

Browse files
committed
cleaned up un-needed library imports from
box_controls.
1 parent 2796d31 commit 967052a

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

pentest_tool/src/box_controls.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
use core::error;
2-
use std::os::unix::thread::JoinHandleExt;
3-
use std::process::{Command, Stdio};
1+
use std::process::Command;
42
use std::{path::PathBuf, process};
53
use std::env;
64
use std::fs;
7-
use std::io::{stdin, BufRead, BufReader};
85
use std::io::Write;
9-
use std::thread::{self, JoinHandle, Thread};
6+
use std::thread::{self, JoinHandle};
107
use std::time::Duration;
11-
use std::str::FromStr;
128
use crate::{get_user_input, Project};
139

1410
pub fn stop_all_boxes(projects: &Vec<Project>){

0 commit comments

Comments
 (0)