bee-tui 0.9.0

Production-grade k9s-style terminal cockpit for Ethereum Swarm Bee node operators.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use bee_tui::{app::App, cli::Cli};
use clap::Parser;

#[tokio::main]
async fn main() -> color_eyre::Result<()> {
    bee_tui::errors::init()?;
    bee_tui::logging::init()?;

    let args = Cli::parse();
    let mut app = App::with_overrides(
        args.tick_rate,
        args.frame_rate,
        args.ascii,
        args.no_color,
    )?;
    app.run().await?;
    Ok(())
}