10 lines
305 B
Rust
10 lines
305 B
Rust
#![forbid(unsafe_code)]
|
|
//! 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");
|
|
|
|
#[cfg(test)]
|
|
#[path = "tests/runtime_support.rs"]
|
|
mod tests;
|