1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
extern crate confy;
#[macro_use]
extern crate serde_derive;
extern crate serde;
mod config;
pub mod errors;
pub mod ops;
pub mod utils;
pub type CliResult = Result<(), errors::CliError>;
pub use config::Config;