1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#![feature(or_patterns)]
#![feature(bool_to_option)]

#[macro_use]
extern crate tracing;

#[macro_use]
extern crate serde;

pub mod aggregator;
pub mod common;
pub mod coordinator;

#[cfg(test)]
mod tests;