lefthk_core/config/
mod.rs1pub mod command;
2mod keybind;
3
4pub use command::Command;
5pub use keybind::Keybind;
6
7pub trait Config {
8 fn mapped_bindings(&self) -> Vec<Keybind>;
9}
10
11pub trait CommandAdapter {
12 fn convert(&self) -> Vec<Box<dyn Command>>;
13}