1 2 3 4 5 6 7 8 9 10 11 12
use serde::{Deserialize, Serialize};
use structopt::StructOpt;
#[derive(
Clone, Debug, Deserialize, Serialize, StructOpt, strum::EnumString, strum::EnumVariantNames,
)]
#[strum(serialize_all = "kebab_case")]
pub enum OutputFormat {
Raw,
Json,
Table,
}