scriptkeys/
lib.rs

1pub mod config;
2pub mod constants;
3pub mod device;
4pub mod errors;
5pub mod helper;
6pub mod script;
7
8#[derive(Debug)]
9pub enum EnigoCommand {
10    KeyClick(enigo::Key),
11    KeyDown(enigo::Key),
12    KeyUp(enigo::Key),
13}