use super::*; #[derive(Debug)] pub struct Postgres; impl Postgres { pub fn new() -> Self { Postgres {} } } impl DatabaseDriver for Postgres { }