aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorTeddy Wing2022-03-14 21:14:35 +0100
committerTeddy Wing2022-03-14 21:14:35 +0100
commit0c80aaf2fc67b82b0d6ec60bd9317d7b4cf7e9ac (patch)
treef60f463f36c2e9b0bb890d48ef80258eb68638e8 /src/lib.rs
parente9fa29a7c7852caa27be2e5e0f3f7d45e2be5eed (diff)
downloadyaqlite-0c80aaf2fc67b82b0d6ec60bd9317d7b4cf7e9ac.tar.bz2
Idea for selecting a record from the database as YAML
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index a532b36..3f6151e 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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}")]