aboutsummaryrefslogtreecommitdiff
path: root/src/db/backend.rs
blob: 5ae4de2cc036654f6020db9997828a6bca6ce934 (plain)
1
2
3
4
5
pub enum DbBackend {
    Sqlite {
        db_file: &'static str,
    }
}