datadot 0.0.1

A Data Dot is a micro executable that acts on its specified data point that is defined at start up, join a cluster, and interact with the colony.
Documentation
#![allow(dead_code)]
#![allow(unused_imports)]
#![allow(unused_variables)]

#[macro_use]
extern crate lazy_static;
extern crate socket2;
extern crate regex;
extern crate dynamic_reload;
#[macro_use]
extern crate log;
#[macro_use]
extern crate json;

#[macro_use]
pub mod multicast;
pub mod dot;
pub mod plugin_mngt;
pub mod helper;
#[macro_use]
pub mod macros;