Buttplug sex toy control library

chore: Fix how we comment out device tester for now.

+9 -4
+9 -4
crates/examples/src/bin/device_tester.rs
··· 1 - /* 2 1 // Buttplug Rust Source Code File - See https://buttplug.io for more info. 3 2 // 4 3 // Copyright 2016-2025 Nonpolynomial Labs LLC. All rights reserved. ··· 6 5 // Licensed under the BSD 3-Clause license. See LICENSE file in the project root 7 6 // for full license information. 8 7 8 + 9 + use tracing::Level; 10 + 11 + /* 9 12 use buttplug_client::device::{ClientDeviceFeature, ClientDeviceOutputCommand}; 10 13 use buttplug_client::{ButtplugClient, ButtplugClientDevice, ButtplugClientEvent}; 11 14 use buttplug_client_in_process::ButtplugInProcessClientConnectorBuilder; ··· 28 31 use std::collections::{HashMap, HashSet}; 29 32 use std::{fs, sync::Arc, time::Duration}; 30 33 use tokio::time::sleep; 31 - use tracing::Level; 32 34 33 35 async fn set_level_and_wait( 34 36 dev: &ButtplugClientDevice, ··· 361 363 // And now we're done! 362 364 println!("Exiting example"); 363 365 } 364 - 366 + */ 365 367 #[tokio::main(flavor = "current_thread")] 366 368 async fn main() { 367 369 tracing_subscriber::fmt() 368 370 .with_max_level(Level::DEBUG) 369 371 .init(); 372 + panic!("Reimplement me!"); 373 + /* 370 374 device_tester().await; 375 + */ 371 376 } 372 - */ 377 +