1
2
3
4
5
6
7
//! # Reporters
//!
//! `reporters` will help you in sending a piece of information or message to different destinations e.g. email inbox, slack channel etc

pub mod reporter;

pub use reporter::*;