mirror of
https://github.com/feschber/lan-mouse.git
synced 2026-04-04 20:51:28 +03:00
fix remaining clippy lints
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
use anyhow::{anyhow, Result};
|
||||
use crate::client::{ClientEvent, ClientHandle};
|
||||
use crate::event::Event;
|
||||
use crate::producer::EventProducer;
|
||||
@@ -8,8 +9,8 @@ use std::{io, pin::Pin};
|
||||
pub struct MacOSProducer;
|
||||
|
||||
impl MacOSProducer {
|
||||
pub fn new() -> Self {
|
||||
Self {}
|
||||
pub fn new() -> Result<Self> {
|
||||
Err(anyhow!("not yet implemented"))
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user