mabel/src/state.rs

6 lines
87 B
Rust
Raw Normal View History

2023-06-29 12:08:59 +00:00
use sqlx::{Pool, Postgres};
pub struct AppState {
pub database: Pool<Postgres>,
}