imgboard/src/state.rs

7 lines
139 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>,
2023-10-18 22:32:37 +02:00
pub hbs: handlebars::Handlebars<'static>,
2023-10-18 17:17:53 +02:00
}