mirror of
https://github.com/crossterm-rs/crossterm.git
synced 2025-09-29 22:11:51 +00:00
7 lines
147 B
Rust
7 lines
147 B
Rust
//! All platform specific (unsafe) code will be handled in this module.
|
|
|
|
#[cfg(unix)]
|
|
pub mod unix_kernel;
|
|
#[cfg(windows)]
|
|
pub mod windows_kernel;
|