//! # nt
//!
//! `nt` is an library implementing client and server functionality for the NetworkTables rev. 3 protocol
//!
//! The provided [`NetworkTables`](struct.NetworkTables.html) struct contains methods for querying
//! the state of the connection, accessing, as well as updating and creating entries that will be
//! synced to the server.
extern crate tokio;
/// Base result type for nt-rs
pub type Result<T> = Result;
pub use *;
pub use EntryData;
pub use NetworkTables;
pub use ;
pub use *;