1
2
3
4
5
6
7
8
9
10
11
pub mod fluvio {
    pub use fluvio::{FluvioError, PartitionConsumer, RecordKey, TopicProducer};
}

pub mod config;
pub(crate) mod error;
pub mod opt;

pub fn git_hash_version() -> &'static str {
    env!("GIT_HASH")
}