use std::io;
mod build;
pub mod daily;
pub mod single;
pub mod stack;
pub mod stdout;
pub use build::{
build_all_handlers_from_config, build_handler_for_channel_from_config,
build_handler_from_config,
};
pub trait Handler: Send + Sync {
fn log(&self, message: &str) -> io::Result<()>;
}