diff --git a/src/main.rs b/src/main.rs index e1fd84f..402dbcf 100644 --- a/src/main.rs +++ b/src/main.rs @@ -33,7 +33,7 @@ fn main() { socket.send("this is a message".to_string()); let hotkey_handle = thread::spawn(move || { - modules::hotkey_handler::create_keyboard_hooks(hotkey_channel_tx); + modules::external_interface::create_keyboard_hooks(hotkey_channel_tx); }); //until control_c is caught, check the queue of incoming diff --git a/src/modules/hotkey_handler.rs b/src/modules/external_interface.rs similarity index 100% rename from src/modules/hotkey_handler.rs rename to src/modules/external_interface.rs diff --git a/src/modules/mod.rs b/src/modules/mod.rs index dda535f..d0daa7c 100644 --- a/src/modules/mod.rs +++ b/src/modules/mod.rs @@ -1,7 +1,7 @@ pub mod message_handler; pub mod socket_handler; -pub mod hotkey_handler; +pub mod external_interface; pub mod stream_states { pub mod stream_states_class;