stringqb/src/drivers/postgres.rs
2019-04-10 14:03:28 -04:00

18 lines
329 B
Rust

//! Database Driver for Postgres
//!
//! Contains database-specific query data
use super::*;
/// The struct implementing the `DatabaseDriver` trait
#[derive(Debug)]
pub struct Postgres;
impl Postgres {
/// Create a Postgres driver
pub fn new() -> Self {
Postgres {}
}
}
impl DatabaseDriver for Postgres {}