refactor: Move action to own mod 📦

This commit is contained in:
Dheepak Krishnamurthy 2021-11-03 05:48:35 -06:00
parent 0c749b0f5c
commit f83a21dd95
7 changed files with 39 additions and 35 deletions

16
src/action.rs Normal file
View file

@ -0,0 +1,16 @@
#[derive(PartialEq, Debug)]
pub enum Action {
Report,
Filter,
Add,
Annotate,
Subprocess,
Log,
Modify,
HelpPopup,
Error,
ContextMenu,
Jump,
DeletePrompt,
DonePrompt,
}