yozefu 0.0.29

Yozefu is a CLI tool for Apache kafka. It allows you to navigate topics and search Kafka records.
1
2
3
4
5
6
7
8
9
10
11
12
//! The main entry point.

use command::{Cli, Parser, TuiError};

#[tokio::main]
async fn main() -> Result<(), TuiError> {
    // Needed to use `tokio-console` in debug mode
    // #[cfg(debug_assertions)]
    // console_subscriber::init();
    let parsed = Cli::<String>::parse();
    parsed.execute().await
}