summaryrefslogtreecommitdiff
path: root/src/state.rs
blob: 546a609347b53e9943d1d840f00cd2d2363453f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::sync::Arc;

use expo_push_notification_client::Expo;
use tokio_postgres::Client;

#[derive(Clone)]
/// State application shared through Axum
pub struct AppState {
    /// PostgreSQL client synced via Arc
    pub client: Arc<Client>,

    /// Expo connection
    pub expo: Arc<Expo>,
}