1 2 3 4 5 6 7 8
mod app; mod error; pub mod exec; pub type Result<T> = std::result::Result<T, error::Error>; pub use app::App; pub use error::Error;