stringqb/src/drivers/postgres.rs

13 lines
162 B
Rust
Raw Normal View History

2019-04-02 16:35:52 -04:00
use super::*;
#[derive(Debug)]
pub struct Postgres;
2019-04-09 14:13:37 -04:00
impl Postgres {
pub fn new() -> Self {
Postgres {}
2019-04-02 16:35:52 -04:00
}
2019-04-04 16:39:05 -04:00
}
2019-04-09 14:13:37 -04:00
impl DatabaseDriver for Postgres {}