command_fs/
file_handel.rs

1use std::path::Path;
2
3pub struct CommandFS<'a> {
4    pub dir: &'a Path,
5    // TODO: sample_dir: Option<Vec<Box<Path>>>,
6    pub err_msg: String,
7}