bayou 0.1.3

iot real-time analytics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extern crate log;
use clap::Parser;

#[derive(Parser)]
#[command(author, version, about, long_about = None)]
#[command(propagate_version = true)]
pub struct Cli {
  /// config file
  #[arg(short, long, value_name = "config file", default_value = "")]
  pub config: String,
  // #[command(subcommand)]
  // pub command: Commands,
}

// #[derive(Subcommand)]
// pub enum Commands {
// }