use sqlx::{postgres::Postgres, Pool};
pub struct AppState {
pub pool: Pool<Postgres>,
pub hbs: handlebars::Handlebars<'static>,
}