2026-04-10 15:56:18 -03:00
|
|
|
#![forbid(unsafe_code)]
|
2026-04-23 07:00:06 -03:00
|
|
|
//! Runtime retry, HID recovery, and audio-device discovery helpers for the server.
|
|
|
|
|
include!("runtime_support/hid_recovery.rs");
|
|
|
|
|
include!("runtime_support/audio_discovery.rs");
|
|
|
|
|
include!("runtime_support/hid_write.rs");
|
2026-04-10 15:56:18 -03:00
|
|
|
|
|
|
|
|
#[cfg(test)]
|
2026-04-23 07:00:06 -03:00
|
|
|
#[path = "tests/runtime_support.rs"]
|
|
|
|
|
mod tests;
|