1
2
3
4
5
6
7
8
9
10
11
12
//! Cadre is a simple, self-hosted, high-performance remote configuration
//! service.

#![forbid(unsafe_code)]
#![warn(missing_docs)]

pub mod cli;
pub mod client;
pub mod server;

pub use crate::cli::Args;
pub use crate::client::CadreClient;