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

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