tts-rs/src/backends/mod.rs

12 lines
211 B
Rust

#[cfg(target_os = "linux")]
mod speech_dispatcher;
#[cfg(target_arch = "wasm32")]
mod web;
#[cfg(target_os = "linux")]
pub use self::speech_dispatcher::*;
#[cfg(target_arch = "wasm32")]
pub use self::web::*;