nvisy-rt-sdk 0.1.1

Rust client for the Nvisy Runtime API: direct multimodal redaction
Documentation
1
2
3
4
5
6
7
8
9
10
//! HTTP client for the Nvisy Runtime API.

mod config;
mod nvisy;

pub(crate) use config::NvisyRtBuilderError;
pub use config::{
    DEFAULT_BASE_URL, DEFAULT_MAX_RETRIES, DEFAULT_TIMEOUT, DEFAULT_USER_AGENT, NvisyRtBuilder,
};
pub use nvisy::NvisyRt;