1use snafu::Snafu; 2 3pub mod builder; 4pub mod handle; 5pub mod model; 6 7#[derive(Debug, Snafu)] 8pub enum Error { 9 Client { source: crate::client::Error }, 10}