stringqb/src/drivers/sqlite.rs

13 lines
155 B
Rust
Raw Normal View History

2019-04-03 16:29:51 -04:00
use super::*;
#[derive(Debug)]
2019-04-02 16:35:52 -04:00
pub struct SQLite;
2019-04-09 14:13:37 -04:00
impl SQLite {
pub fn new() -> Self {
SQLite {}
2019-04-02 16:35:52 -04:00
}
2019-04-04 16:39:05 -04:00
}
2019-04-09 14:13:37 -04:00
impl DatabaseDriver for SQLite { }