mirror of
https://github.com/feschber/lan-mouse.git
synced 2026-03-27 07:00:53 +03:00
To reduce binary size one can now enable only specific backends, e.g. wayland or x11 via cargo features Additionally adds stubs for libei and xdg-desktop-portal backends
10 lines
197 B
Rust
10 lines
197 B
Rust
use std::sync::mpsc::Receiver;
|
|
|
|
use crate::{event::Event, client::{ClientHandle, Client}};
|
|
|
|
|
|
|
|
pub(crate) fn run(_consume_rx: Receiver<(Event, ClientHandle)>, _clients: Vec<Client>) {
|
|
todo!()
|
|
}
|