1 2 3 4 5 6 7
use std::sync::Arc; use tokio_postgres::Client; #[derive(Clone)] pub struct AppState { pub client: Arc<Client>, }