1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # egui-keybind, a hotkey library for [egui](https://github.com/emilk/egui)
//!
//! This library provides a simple [egui](https://github.com/emilk/egui) widget for keybindings (hotkeys).
//!
//! # License
//!
//! Public domain or MIT or Boost Software License

#![warn(missing_docs)]

mod bind;
mod keybind;
pub use bind::*;
pub use keybind::*;