volli 0.1.5

CLI frontend for volli
use clap::{Parser, Subcommand};

#[derive(Parser)]
#[command(name = "volli", about = "Distributed diagnostics CLI", version)]
struct Cli {
    #[command(subcommand)]
    command: Option<Commands>,
}

#[derive(Subcommand)]
enum Commands {
    Serve,
    Node,
    Run,
}

#[tokio::main]
async fn main() {
    let _cli = Cli::parse();
    eprintln!("volli is under construction. See --help for usage.");
}