This commit is contained in:
Mateusz Gruszczyński
2026-07-22 23:04:29 +02:00
parent ba3726c1c1
commit e998a38e49
7 changed files with 401 additions and 61 deletions
+6 -2
View File
@@ -34,8 +34,12 @@ impl Database {
Ok(Self { pool, kind })
}
pub fn pool(&self) -> &AnyPool { &self.pool }
pub fn kind(&self) -> DatabaseKind { self.kind }
pub fn pool(&self) -> &AnyPool {
&self.pool
}
pub fn kind(&self) -> DatabaseKind {
self.kind
}
}
impl DatabaseKind {