13 lines
195 B
Rust
13 lines
195 B
Rust
|
use super::*;
|
||
|
|
||
|
use pg;
|
||
|
|
||
|
#[derive(Debug)]
|
||
|
pub struct Postgres;
|
||
|
|
||
|
#[cfg(feature="pg")]
|
||
|
impl DatabaseDriver for Postgres {
|
||
|
fn query(&self, _query: &str) -> Result<(), ()> {
|
||
|
Ok(())
|
||
|
}
|
||
|
}
|