diff options
author | Teddy Wing | 2022-03-14 21:14:35 +0100 |
---|---|---|
committer | Teddy Wing | 2022-03-14 21:14:35 +0100 |
commit | 0c80aaf2fc67b82b0d6ec60bd9317d7b4cf7e9ac (patch) | |
tree | f60f463f36c2e9b0bb890d48ef80258eb68638e8 /src/lib.rs | |
parent | e9fa29a7c7852caa27be2e5e0f3f7d45e2be5eed (diff) | |
download | yaqlite-0c80aaf2fc67b82b0d6ec60bd9317d7b4cf7e9ac.tar.bz2 |
Idea for selecting a record from the database as YAML
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}")] |