1//! Key code mapping implementations 2 3/// Custom key mapping functionality 4pub mod custom; 5 6/// Standard key mapping definitions 7pub mod standard; 8 9// Re-export mapping types 10pub use custom::{CustomKey, CustomKeyMap};