ced 0.1.1

Dead easy csv editor
Documentation
#[cfg(feature = "cli")]
use ced::CedResult;

#[cfg(feature = "cli")]
pub fn main() -> CedResult<()> {
    let args: Vec<String> = std::env::args().collect();

    // Print basic command line information
    if let Some(first_arg) = args.get(1) {
        match first_arg.as_str() {
            "--version" | "-v" => {
                println!("ced, 0.1.1");
                return Ok(());
            }
            "--help" | "-h" => {
                println!("{}", include_str!("../help.txt"));
                return Ok(());
            }
            _ => (),
        }
    }

    // Start command loop
    use ced::CommandLoop;
    let mut command_loop = CommandLoop::new();
    command_loop
        .start_loop()
        .err()
        .map(|err| println!("{}", err));
    Ok(())
}

// Placeholder for binary
#[cfg(not(feature = "cli"))]
pub fn main() {}