artillery-core 0.1.2

Fire-forged cluster management & Distributed data protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// As you swim lazily through the milieu,
// The secrets of the world will infect you.

pub mod cluster;
pub mod cluster_config;
pub mod member;
pub mod membership;
pub mod state;

pub mod prelude {
    pub use super::cluster::*;
    pub use super::cluster_config::*;
    pub use super::member::*;
    pub use super::membership::*;
    pub use super::state::*;
}