diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-05 14:21:32 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-05 14:21:32 +0200 |
commit | f56b18fd28054aa5b241a897d22bcfc58c321286 (patch) | |
tree | 10908e8ada3641be175f1af9857c3be6b7489f7c /src/config.rs | |
parent | b592d19f1a74a32df0aaed7dbf7484d0ef5ad35a (diff) |
Send notifications by Expo API
Diffstat (limited to 'src/config.rs')
-rw-r--r-- | src/config.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs index 7eefff8..a703010 100644 --- a/src/config.rs +++ b/src/config.rs @@ -16,6 +16,9 @@ pub struct Configuration { /// Host URL pub allowed_host: String, + + /// Token used by Expo API to send a notification + pub expo_access_token: String, } impl Configuration { |