rdkafka_wrap/
configuration.rs

1/// All configuration reference from :<https://github.com/confluentinc/librdkafka/blob/master/CONFIGURATION.md>
2
3pub mod all {
4    pub const BOOTSTRAP_SERVERS: &str = "bootstrap.servers";
5}
6
7pub mod producer {}
8
9pub mod consumer {
10    pub const GROUP_ID: &str = "group.id";
11}