5 lines
93 B
Rust
5 lines
93 B
Rust
use sqlx::{postgres::Postgres, Pool};
|
|
|
|
pub struct AppState {
|
|
pub pool: Pool<Postgres>,
|
|
}
|