1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#![deny(missing_docs)]

//! # nut-client
//!
//! The `nut-client` crate provides a network client implementation
//! for Network UPS Tools (NUT) servers.

pub use config::*;
pub use error::*;
pub use var::*;

/// Blocking client implementation for NUT.
pub mod blocking;

mod cmd;
mod config;
mod error;
mod var;