12 lines
144 B
Rust
12 lines
144 B
Rust
use sqlx::PgPool;
|
|
|
|
pub mod blog;
|
|
pub mod garden;
|
|
pub mod root;
|
|
pub mod templates;
|
|
|
|
#[derive(Clone)]
|
|
pub struct AppState {
|
|
pub db: PgPool,
|
|
}
|