just/src/subcommand.rs

11 lines
145 B
Rust
Raw Normal View History

#[derive(PartialEq, Clone, Debug)]
pub(crate) enum Subcommand {
2019-10-07 04:04:39 -07:00
Dump,
Edit,
Evaluate,
Run,
2019-10-07 04:04:39 -07:00
List,
Show { name: String },
Summary,
2019-10-07 04:04:39 -07:00
}