Skip to main content

yozefu_app/
lib.rs

1//! The core of the tool:
2//! - List topics, and consume records,
3//! - Fetch information about a given topic,
4//! - Consume records.
5pub mod admin;
6mod app;
7pub mod configuration;
8pub mod search;
9
10pub use admin::*;
11pub use app::App;
12/// Name of the application
13pub const APPLICATION_NAME: &str = "yozefu";
14
15/// Name of the application
16pub const BINARY_NAME: &str = "yozf";