gray 0.1.0

grey is a small package to create command line applications
Documentation
pub mod cli;

#[cfg(test)]
mod tests {

    use std::collections::HashMap;
    use std::vec::Vec;
    use crate::cli;
    #[test]
    fn application() {
        let app = cli::default();
        let second_app = cli::App{
            name: String::from("Test"),
            authors : Vec::from([String::from("Test")]),
            actions : HashMap::new()
        };
        assert!(app==second_app);
    }
}

pub mod grey{
    pub fn setup(){
        println!("hello!");
    }
}