1pub mod config; 2pub mod deploy; 3pub mod error; 4 5pub type Result<T> = std::result::Result<T, crate::Error>; 6pub use error::Error;