#[cfg(feature = "hose")]
pub mod hose;
pub mod auth;
pub use auth::Credentials;
pub mod service {
#[cfg(feature = "hose")]
pub const HOSE_HOST: &str = "https://hose.cloud.dussault.dev";
pub const AUTH_HOST: &str = "https://auth.cloud.dussault.dev";
}
pub mod error {
#[cfg(feature = "hose")]
pub use super::hose::HoseError;
}