Skip to main content

codetether_agent/platform/
mod.rs

1//! Platform abstraction layer.
2//!
3//! Provides platform-specific implementations for audio capture, playback,
4//! and other OS-level features that differ between Windows, macOS, and Linux.
5
6#[cfg(target_os = "windows")]
7pub mod windows;
8
9#[cfg(not(target_os = "windows"))]
10pub mod unix;