migra/migra-cli/src/opts.rs

14 lines
238 B
Rust
Raw Normal View History

2021-01-31 02:54:23 +03:00
pub use structopt::StructOpt;
#[derive(Debug, StructOpt)]
pub(crate) enum AppOpt {
Init,
Apply(ApplyOpt),
}
#[derive(Debug, StructOpt)]
pub(crate) struct ApplyOpt {
#[structopt(parse(from_str))]
pub file_name: String,
2021-01-31 02:54:23 +03:00
}