text_document_search/lib.rs
1// Generated by Qleany v1.4.8 from feature_lib.tera
2pub mod document_search_controller;
3pub mod dtos;
4// Hand-added (NOT generated by Qleany): the shared matcher. Everything that asks "does
5// this text contain that query" goes through it — the in-document find, find-and-replace,
6// and, via the public API, a host app's project-wide search. Two matchers would drift.
7pub mod folding;
8pub mod matching;
9mod units_of_work;
10pub(crate) mod use_cases;
11
12pub use dtos::*;