Claves - A library for capturing global Keystrokes and Mouse clicks on MacOS and Windows

```rust use claves::{init, deinit};

fn main(){ // Global channel, you can initiate a receiver from multiple threads and all of them will receive the events. let receiver = init();

dbg!(receiver.recv().unwrap());

// Deinitializes all threads that capture data from the keyboard and mouse, then empties out the global channel. deinit(); }

```