//! Audio playback module for voice messages. //! //! Provides: //! - AudioPlayer: ffplay-based playback with play/pause/seek controls //! - VoiceCache: LRU cache for downloaded OGG voice files pub mod cache; pub mod player; pub use cache::VoiceCache; pub use player::AudioPlayer;