summaryrefslogtreecommitdiffstats
path: root/src/core/src/modules/list/search/mod.rs
blob: 0bf7ea3fa3eefe6901f5f245bed062540bd5c54f (plain)
1
2
3
4
5
6
mod line_match;
#[allow(clippy::module_inception)]
mod search;
mod state;

pub(crate) use self::{line_match::LineMatch, search::Search, state::State};