cleaned up un-needed library imports from

box_controls.
This commit is contained in:
pyro57000
2025-03-13 15:03:14 -05:00
parent 2796d31f14
commit 967052a4e2

View File

@@ -1,14 +1,10 @@
use core::error; use std::process::Command;
use std::os::unix::thread::JoinHandleExt;
use std::process::{Command, Stdio};
use std::{path::PathBuf, process}; use std::{path::PathBuf, process};
use std::env; use std::env;
use std::fs; use std::fs;
use std::io::{stdin, BufRead, BufReader};
use std::io::Write; use std::io::Write;
use std::thread::{self, JoinHandle, Thread}; use std::thread::{self, JoinHandle};
use std::time::Duration; use std::time::Duration;
use std::str::FromStr;
use crate::{get_user_input, Project}; use crate::{get_user_input, Project};
pub fn stop_all_boxes(projects: &Vec<Project>){ pub fn stop_all_boxes(projects: &Vec<Project>){