1
2
3
4
5
6
7
8
9
10
11
use structopt::StructOpt;

use crate::output::OutputFormat;

/// Basic command options
#[derive(Clone, Debug, StructOpt)]
pub struct BasicOptions {
    /// output format
    #[structopt(short, long, default_value = "raw")]
    pub output: OutputFormat,
}