os_monitor/
lib.rs

1
2
3
4
5
6
7
8
9
10
mod bindings;
mod error;
mod event;
mod platform;

pub use error::MonitorError;
pub use event::{
    EventCallback, KeyboardEvent, Monitor, MouseEvent, MouseEventType, WindowEvent, WindowEventType,
};
pub use platform::{detect_changes, initialize_monitor};