rusty-keys/src/lib.rs

17 lines
312 B
Rust

#![recursion_limit = "1000"]
pub const VERSION: &'static str = env!("CARGO_PKG_VERSION");
pub mod error;
pub use error::Error;
pub type Result<T> = ::std::result::Result<T, Error>;
pub mod keymapper;
pub use keymapper::*;
#[cfg(target_os = "linux")]
mod linux;
#[cfg(target_os = "linux")]
pub use linux::*;