diff options
Diffstat (limited to 'helix-term/src/handlers.rs')
-rw-r--r-- | helix-term/src/handlers.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/helix-term/src/handlers.rs b/helix-term/src/handlers.rs new file mode 100644 index 00000000..ab2d724f --- /dev/null +++ b/helix-term/src/handlers.rs @@ -0,0 +1,15 @@ +use std::sync::Arc; + +use arc_swap::ArcSwap; + +use crate::config::Config; +use crate::events; + + + } +pub fn setup(config: Arc<ArcSwap<Config>>) -> Handlers { + events::register(); + let handlers = Handlers { + }; + handlers +} |