Skip to content

Commit

Permalink
chore: Remove unused use statements in prowand
Browse files Browse the repository at this point in the history
  • Loading branch information
qdot committed Dec 21, 2024
1 parent f32a0b6 commit d5d2945
Showing 1 changed file with 2 additions and 16 deletions.
18 changes: 2 additions & 16 deletions buttplug/src/server/device/protocol/kiiroo_prowand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,48 +5,34 @@
// Licensed under the BSD 3-Clause license. See LICENSE file in the project root
// for full license information.

use super::fleshlight_launch_helper::calculate_speed;
use crate::{
core::{
errors::ButtplugDeviceError,
message::{
self,
ButtplugDeviceMessage,
ButtplugServerDeviceMessage,
Endpoint,
SensorReadingV4,
SensorType,
},
},
server::device::{
hardware::{
Hardware,
HardwareCommand,
HardwareEvent,
HardwareReadCmd,
HardwareSubscribeCmd,
HardwareUnsubscribeCmd,
HardwareWriteCmd,
},
protocol::{generic_protocol_setup, ProtocolHandler},
},
util::{async_manager, stream::convert_broadcast_receiver_to_stream},
};
use dashmap::DashSet;
use futures::{
future::{self, BoxFuture},
future::BoxFuture,
FutureExt,
StreamExt,
};
use std::{
default::Default,
pin::Pin,
sync::{
atomic::{AtomicU8, Ordering::SeqCst},
Arc,
},
sync::Arc,
};
use tokio::sync::broadcast;

generic_protocol_setup!(KiirooProWand, "kiiroo-prowand");

Expand Down

0 comments on commit d5d2945

Please sign in to comment.