azure_cognitive_speech_services/
lib.rs

1mod error;
2pub mod message;
3mod synthesiser;
4
5pub use self::{
6	error::{Error, Result},
7	synthesiser::AzureCognitiveSpeechServicesSynthesiser
8};