Documentation
1
2
3
4
5
6
7
use bh::cli::Cli;

fn main() {
    if let Err(err) = Cli::run() {
        eprintln!("{:?}", err);
    }
}