diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-11-29 12:36:59 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-11-29 12:36:59 +0100 |
commit | 26d8aed5540677d539957dea16f95491499eff58 (patch) | |
tree | fc5f2ef0a5dd063e7a4a4fb4f63cfaed45d7e1ec /src/main.rs | |
parent | 235a650d34348e8a7febea525b452b2b062cd1d5 (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/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 96cdc61..b9b7f87 100644 --- a/src/main.rs +++ b/src/main.rs @@ -31,11 +31,11 @@ use tracing::Span; /// Create the app: setup everything and returns a `Router` async fn create_app() -> Result<Router, AppError> { logger::setup(); - expo::setup(CONFIG.expo_access_token.clone()); let dbclient = db::setup().await?; let state = state::AppState { client: Arc::new(dbclient), + expo: Arc::new(expo::setup(CONFIG.expo_access_token.clone())), }; let schema = Schema::build( |