Files
pacdef_rust/crates/pacdef_core/src/action.rs
T
2023-02-24 13:25:33 +01:00

20 lines
313 B
Rust

use pacdef_macros::Action;
/// All actions the program can perform. Variants of the enum relate to
/// the different subcommands.
#[derive(Debug, Action)]
pub enum Actions {
Clean,
Edit,
Import,
List,
New,
Remove,
Review,
Search,
Show,
Sync,
Unmanaged,
Version,
}