aboutsummaryrefslogtreecommitdiff
path: root/src/app_action.rs
diff options
context:
space:
mode:
authorShav Kinderlehrer <[email protected]>2024-03-06 14:14:07 -0500
committerShav Kinderlehrer <[email protected]>2024-03-06 14:14:07 -0500
commitc2acb446e7868b67e5743d54cee5c64c469e5a18 (patch)
tree0a0243b2d064fe2d1d6acf2a21ea93a40ad9a02a /src/app_action.rs
parenta5dbccee4f22de991e33449ae1d1835269c6075d (diff)
downloadmolehole-c2acb446e7868b67e5743d54cee5c64c469e5a18.tar.gz
molehole-c2acb446e7868b67e5743d54cee5c64c469e5a18.zip
Add keyboard commands
Diffstat (limited to 'src/app_action.rs')
-rw-r--r--src/app_action.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/app_action.rs b/src/app_action.rs
index 104e4f9..8bbe9dd 100644
--- a/src/app_action.rs
+++ b/src/app_action.rs
@@ -1,3 +1,5 @@
+#[derive(Default, Clone, Copy)]
pub enum AppAction {
- Quit
+ #[default]
+ Quit,
}