You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
distant/src/main.rs

11 lines
204 B
Rust

use distant::Opt;
#[tokio::main]
async fn main() {
let opt = Opt::load();
distant::init_logging(&opt.common);
if let Err(x) = opt.subcommand.run().await {
eprintln!("{}", x);
}
}