cardinal-cli 0.2.41

Command-line launcher for the Cardinal gateway
Documentation
pub mod cmd;

use clap::{Parser, Subcommand};

#[derive(Parser, Debug)]
pub struct Cli {
    #[command(subcommand)]
    pub command: Option<Command>,
}

#[derive(Debug, Parser)]
pub struct CmdRun {
    #[arg(long, short)]
    config: Vec<String>,
}

#[derive(Debug, Subcommand)]
pub enum Command {
    Run(CmdRun),
}