[go: up one dir, main page]

tts 0.1.0

High-level Text-To-Speech (TTS) interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[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::*;