use super::*; #[derive(Debug)] pub struct Postgres; impl DatabaseDriver for Postgres { fn query(&self, _query: &str) -> Result<(), ()> { Ok(()) } }