aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: f434ef23a349b0e9ce07577ac5f732261a126804 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod insert;
pub mod select;
pub mod sqlite;
pub mod yaml;


pub use insert::*;
pub use select::*;


#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error("SQL error: {0}")]
    Sqlite(#[from] rusqlite::Error),
}