1 2 3 4 5 6 7 8 9 10 11 12
// SPDX-License-Identifier: BUSL-1.1 //! Document operation handlers — module root. //! Submodules: read (scan), write (batch insert, register, index ops), //! sort (external sort, sort helpers), text_extract (FTS indexing). pub mod read; pub mod sort; pub mod text_extract; pub mod write; pub use text_extract::extract_indexable_text;