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