embeddenator_cli/commands/
mod.rs

1//! Command implementations for CLI operations
2
3pub mod ingest;
4pub mod extract;
5pub mod query;
6pub mod bundle_hier;
7pub mod mount;
8pub mod update;
9
10pub use ingest::handle_ingest;
11pub use extract::handle_extract;
12pub use query::{handle_query, handle_query_text};
13pub use bundle_hier::handle_bundle_hier;
14#[cfg(feature = "fuse")]
15pub use mount::handle_mount;
16pub use update::{handle_update_add, handle_update_remove, handle_update_modify, handle_update_compact};