summaryrefslogtreecommitdiff
path: root/src/config.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-09-13 13:04:16 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-09-13 13:04:16 +0200
commit28f4a1be06e29bb3bbb3dbf4f9307308783450ab (patch)
treecf006f2d02e31b02e9636228475095cddfb4c470 /src/config.rs
parent50f16bb68fb6b28a1049ca25bb4273847c77ea93 (diff)
Text-to-speach API for alert sound generation
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs
index a703010..763b852 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -19,6 +19,9 @@ pub struct Configuration {
/// Token used by Expo API to send a notification
pub expo_access_token: String,
+
+ /// Token used for text-to-speach API
+ pub unrealspeech_token: String,
}
impl Configuration {