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