//! Ratman client & interface library
//!
//! Ratman is a packet router daemon, which can either run
//! stand-alone, or be embedded into existing applications. This
//! library provides type definitions, utilities, and interfaces to
//! interact with the Ratman router core.
//!
//! This library can be used in two different ways (not mutually
//! exclusive, although doing both at the same time would be a bit
//! weird. But we won't judge you).
//!
//! 1. To write a ratman-client application. Use the types and
//! functions exported from the [client](crate::client) module
//!
//! 2. To write a ratman-netmod driver. Use the types and functions
//! exported from the [netmod](crate::netmod) module
extern crate tracing;
// Re-export existing errors at the root to make them more convenient
// to access. Importantly errors are name-spaced while results are
// not. A result MUST always be of type Result<T, RatmanError>.
pub use ;