imgboard/src/state.rs
2023-10-18 17:17:53 +02:00

5 lines
93 B
Rust

use sqlx::{postgres::Postgres, Pool};
pub struct AppState {
pub pool: Pool<Postgres>,
}