diff options
author | Shav Kinderlehrer <[email protected]> | 2024-03-06 14:14:07 -0500 |
---|---|---|
committer | Shav Kinderlehrer <[email protected]> | 2024-03-06 14:14:07 -0500 |
commit | c2acb446e7868b67e5743d54cee5c64c469e5a18 (patch) | |
tree | 0a0243b2d064fe2d1d6acf2a21ea93a40ad9a02a /src/main.rs | |
parent | a5dbccee4f22de991e33449ae1d1835269c6075d (diff) | |
download | molehole-c2acb446e7868b67e5743d54cee5c64c469e5a18.tar.gz molehole-c2acb446e7868b67e5743d54cee5c64c469e5a18.zip |
Add keyboard commands
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 16bee88..96ac2f0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,6 +3,7 @@ mod app_action; mod app_event; mod component; mod components; +mod keys; mod tui; use eyre::Result; |