dalloriam-cloud-client 0.1.2

client library for personal cloud
Documentation
#[cfg(feature = "hose")]
pub mod hose;

pub mod auth;
pub use auth::Credentials;

pub mod service {
    pub const AUTH_HOST: &str = "https://auth.cloud.dussault.dev";

    #[cfg(feature = "hose")]
    pub const HOSE_HOST: &str = "https://hose.cloud.dussault.dev";
}

pub mod error {
    pub use super::auth::AuthError;

    #[cfg(feature = "hose")]
    pub use super::hose::HoseError;
}