iconoclast 0.1.0

Reusable code for Rust-based business μServices
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod config;
mod consumer;
mod error;
mod handler;
#[cfg(test)]
mod test;

pub use config::Config;
pub use config::PropertyValue;
pub use config::from_env;
pub use consumer::Consumer;
pub use error::StreamError;
pub use handler::MessageHandler;
pub use rdkafka::error::KafkaError;