stringqb/src/drivers/postgres.rs

13 lines
163 B
Rust

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