This commit is contained in:
2025-04-09 07:54:37 +02:00
parent 5e4dcbf77c
commit 44cbf20d7b
13 changed files with 1073 additions and 518 deletions

View File

@@ -3,7 +3,7 @@
//! It provides functionality for scanning directories, managing collections,
//! and processing includes between documents.
// Import lazy_static
// Import lazy_static for global state
#[macro_use]
extern crate lazy_static;
@@ -17,7 +17,7 @@ mod include;
pub use error::{DocTreeError, Result};
pub use storage::RedisStorage;
pub use collection::{Collection, CollectionBuilder};
pub use doctree::{DocTree, DocTreeBuilder, new};
pub use doctree::{DocTree, DocTreeBuilder, new, from_directory};
pub use include::process_includes;
#[cfg(test)]