use super::*; #[derive(Debug)] pub struct SQLite; impl SQLite { pub fn new() -> Self { SQLite {} } } impl DatabaseDriver for SQLite { }