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