args-cli 0.1.1

Command-line interface for args
Documentation
1
2
3
4
5
6
7
8
9
10
11
use clap::Parser;

use args_cli::{Args, run, setup};

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    setup().await?;

    let args = Args::parse();
    run(&args).await
}