namada_apps 1.1.4

Namada CLI apps
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod cli;

use color_eyre::eyre::Result;
use namada_apps_lib::logging;
use tracing_subscriber::filter::LevelFilter;

fn main() -> Result<()> {
    // init error reporting
    color_eyre::install()?;

    // init logging
    let _log_guard = logging::init_from_env_or(LevelFilter::INFO)?;

    // run the CLI
    cli::main()
}