1
2
3
4
5
6
7
8
9
10
11
/// All configuration reference from :<https://github.com/confluentinc/librdkafka/blob/master/CONFIGURATION.md>

pub mod all {
    pub const BOOTSTRAP_SERVERS: &str = "bootstrap.servers";
}

pub mod producer {}

pub mod consumer {
    pub const GROUP_ID: &str = "group.id";
}