drone 0.14.0

CLI utility for Drone, an Embedded Operating System.
1
2
3
4
5
6
7
8
9
#![warn(clippy::pedantic)]

use drone::{cli::Cli, utils::run_wrapper};
use structopt::StructOpt;

fn main() {
    let args = Cli::from_args();
    run_wrapper(args.color, || args.run());
}