1 |
pub mod handlers;
|
2 |
pub mod value;
|
3 |
|
4 |
use giterated_models::instance::Instance;
|
5 |
|
6 |
use sqlx::PgPool;
|
7 |
|
8 |
|
9 |
#[derive(Debug, Clone)]
|
10 |
#[allow(unused)]
|
11 |
pub struct DatabaseBackend {
|
12 |
pub(self) our_instance: Instance,
|
13 |
pub(self) pool: PgPool,
|
14 |
}
|
15 |
|