diff options
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 4 | 
1 files changed, 4 insertions, 0 deletions
| @@ -1,7 +1,11 @@ +pub mod select;  pub mod sqlite;  pub mod yaml; +pub use select::select; + +  #[derive(thiserror::Error, Debug)]  pub enum Error {      #[error("SQL error: {0}")] | 
