tanoshi-cli 0.5.0-beta.1

Tanoshi CLI Utilities
extern crate log;

mod data;
mod test;

use clap::{Parser, Subcommand};

#[derive(Parser)]
#[clap(version = "0.1.1", author = "Muhammad Fadhlika <fadhlika@gmail.com>")]
struct Opts {
    #[clap(short, long, default_value = "./")]
    path: String,
    #[clap(subcommand)]
    subcmd: Command,
}

#[derive(Subcommand)]
enum Command {
    Test { file: Option<String> },
}

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    env_logger::init();

    let opts: Opts = Opts::parse();

    match opts.subcmd {
        Command::Test { file } => test::test(file).await?,
    }

    Ok(())
}