summaryrefslogtreecommitdiff
path: root/src/state.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-11-29 12:36:59 +0100
committerSanto Cariotti <santo@dcariotti.me>2024-11-29 12:36:59 +0100
commit26d8aed5540677d539957dea16f95491499eff58 (patch)
treefc5f2ef0a5dd063e7a4a4fb4f63cfaed45d7e1ec /src/state.rs
parent235a650d34348e8a7febea525b452b2b062cd1d5 (diff)
Use Expo on the AppState
This because since Rust 1.83 it is suggested to not use the static reference cloning
Diffstat (limited to 'src/state.rs')
-rw-r--r--src/state.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/state.rs b/src/state.rs
index 700f6ab..546a609 100644
--- a/src/state.rs
+++ b/src/state.rs
@@ -1,5 +1,6 @@
use std::sync::Arc;
+use expo_push_notification_client::Expo;
use tokio_postgres::Client;
#[derive(Clone)]
@@ -7,4 +8,7 @@ use tokio_postgres::Client;
pub struct AppState {
/// PostgreSQL client synced via Arc
pub client: Arc<Client>,
+
+ /// Expo connection
+ pub expo: Arc<Expo>,
}