nvisy-sdk 0.1.1

Rust client for the Nvisy Server API: authentication, workspace management, and task routing
Documentation
1
2
3
4
5
6
7
8
9
10
//! HTTP client for the Nvisy Server API.

mod config;
mod nvisy;

pub(crate) use config::NvisyBuilderError;
pub use config::{
    DEFAULT_BASE_URL, DEFAULT_MAX_RETRIES, DEFAULT_TIMEOUT, DEFAULT_USER_AGENT, NvisyBuilder,
};
pub use nvisy::Nvisy;