1
2
3
4
5
6
7
use std::path::Path;

pub struct CommandFS<'a> {
    pub dir: &'a Path,
    // TODO: sample_dir: Option<Vec<Box<Path>>>,
    pub err_msg: String,
}