We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 080de05 commit c624028Copy full SHA for c624028
1 file changed
src/config.rs
@@ -1,5 +1,8 @@
1
use std::path::PathBuf;
2
3
+#[cfg(target_os = "macos")]
4
+pub const DEFAULT_BACKEND: &str = "say";
5
+#[cfg(not(target_os = "macos"))]
6
pub const DEFAULT_BACKEND: &str = "kokoro";
7
8
pub const SUPPORTED_LANGS: &[&str] = &[
0 commit comments