mirror of
https://github.com/feschber/lan-mouse.git
synced 2026-03-16 17:50:54 +03:00
15 lines
165 B
Rust
15 lines
165 B
Rust
#[cfg(windows)]
|
|
pub mod windows;
|
|
|
|
#[cfg(unix)]
|
|
pub mod wayland;
|
|
|
|
#[cfg(unix)]
|
|
pub mod x11;
|
|
|
|
#[derive(Clone, Copy, Debug)]
|
|
pub enum Backend {
|
|
X11,
|
|
WAYLAND,
|
|
}
|