diff options
author | Teddy Wing | 2022-03-13 02:00:49 +0100 |
---|---|---|
committer | Teddy Wing | 2022-03-13 02:00:49 +0100 |
commit | e3568485ed6b427a193139450ff0546898e59f2e (patch) | |
tree | bd93d646e9d081bc0ea2ef33338d988c958c7dc9 /src/yaml.rs | |
parent | d2b6b8e5f3e54483f269e501816b9e275d59223f (diff) | |
download | yaqlite-e3568485ed6b427a193139450ff0546898e59f2e.tar.bz2 |
extract(): Idea for splitting up this function
Diffstat (limited to 'src/yaml.rs')
-rw-r--r-- | src/yaml.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yaml.rs b/src/yaml.rs index 2517d62..9a7a517 100644 --- a/src/yaml.rs +++ b/src/yaml.rs @@ -9,6 +9,8 @@ mod sql; pub use sql::*; +// TODO: Separate functions to get a list of YAML hashes, and insert hashes into +// the database. pub fn extract( doc: &mut yaml::Yaml, tx: &rusqlite::Transaction, |