stringqb/src/drivers/postgres.rs

13 lines
195 B
Rust
Raw Normal View History

2019-04-02 16:35:52 -04:00
use super::*;
use pg;
#[derive(Debug)]
pub struct Postgres;
#[cfg(feature="pg")]
impl DatabaseDriver for Postgres {
fn query(&self, _query: &str) -> Result<(), ()> {
Ok(())
}
}