aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorTeddy Wing2022-03-12 21:01:57 +0100
committerTeddy Wing2022-03-12 21:02:45 +0100
commitdb05a516596857f0e754d6cd48fe7c9669843731 (patch)
tree4ce1102b4810272ed018f7622e8877efad8588fb /src/lib.rs
parentc487910ee09e0cfd0e5cc2ee1e6232dd7accd073 (diff)
downloadyaqlite-db05a516596857f0e754d6cd48fe7c9669843731.tar.bz2
Move `Yaml` newtype to a new module in library crate
Separate this code from the main binary file.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 6b1c108..32634e9 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1 +1,2 @@
pub mod sqlite;
+pub mod yaml;