imgboard/src/state.rs

6 lines
93 B
Rust
Raw Normal View History

2023-10-18 17:17:53 +02:00
use sqlx::{postgres::Postgres, Pool};
pub struct AppState {
pub pool: Pool<Postgres>,
}