diff --git a/src/runner.rs b/src/runner.rs index 44caf54..ebfd271 100644 --- a/src/runner.rs +++ b/src/runner.rs @@ -1,20 +1,18 @@ use std::{ collections::HashMap, - fs::{create_dir_all, OpenOptions}, - io::{BufRead, BufReader, BufWriter, Write}, - path::Path, + io::{BufRead, BufReader, Write}, process::{Child, Command, Stdio}, }; use crate::{profile::Profile, file_utils::get_writer}; pub struct Runner { - environment: HashMap, - command: String, - args: Vec, - stdout: Vec, - stderr: Vec, - process: Option, + pub environment: HashMap, + pub command: String, + pub args: Vec, + pub stdout: Vec, + pub stderr: Vec, + pub process: Option, } #[derive(PartialEq, Eq, Debug)]