summaryrefslogtreecommitdiff
path: root/src/state.rs
blob: 876a5f4fb193802af5ec4c2b42ec8b937c81b4c2 (plain)
1
2
3
4
5
6
7
8
use std::sync::Arc;

use tokio_postgres::Client;

#[derive(Clone)]
pub struct AppState {
    pub client: Arc<Client>,
}