just/src/subcommand.rs

20 lines
297 B
Rust
Raw Normal View History

use crate::common::*;
#[derive(PartialEq, Clone, Debug)]
pub(crate) enum Subcommand {
2019-10-07 04:04:39 -07:00
Dump,
Edit,
Evaluate {
overrides: BTreeMap<String, String>,
},
Run {
overrides: BTreeMap<String, String>,
arguments: Vec<String>,
},
2019-10-07 04:04:39 -07:00
List,
Show {
name: String,
},
Summary,
2019-10-07 04:04:39 -07:00
}