stringqb/src/drivers/postgres.rs

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 {}