stringqb/src/drivers/postgres.rs

17 lines
296 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 {
pub fn new() -> Self {
Postgres {}
}
}
impl DatabaseDriver for Postgres {}