bsud 0.1.0

bsud auto-scale BSU volumes on Outscale's cloud
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use clap::Parser;

pub fn parse() -> Args {
    Args::parse()
}

#[derive(Parser, Debug)]
#[command(author, version, about, long_about=None)]
pub struct Args {
    #[arg(long = "config", short = 'c', default_value_t = String::from("/etc/osc/bsud/config.json"))]
    pub config_path: String,
}