just/src/subcommand.rs

10 lines
124 B
Rust
Raw Normal View History

2019-10-07 04:04:39 -07:00
#[derive(PartialEq)]
pub(crate) enum Subcommand<'a> {
Edit,
Summary,
Dump,
List,
Show { name: &'a str },
Run,
}