1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! [ConfitDB](https://gitlab.com/ufoot/confitdb) is an experimental,
//! distributed, real-time database, giving full control on
//! conflict resolution, implemented in [Rust](https://www.rust-lang.org/).
//!
//! ![ConfitDB icon](https://gitlab.com/ufoot/confitdb/raw/master/media/confitdb-256x256.jpg)
//!
//! Not even a prototype, just an idea. Under heavy construction.

mod cloud;
mod cloud_options;
mod http_server;
mod server_control;
mod server_error;
mod server_options;
mod server_status;
mod udp_server;

pub use cloud::*;
pub use cloud_options::*;
pub use http_server::*;
pub use server_control::*;
pub use server_error::*;
pub use server_options::*;
pub use server_status::*;
pub use udp_server::*;