Skip to main content

mf_search/
lib.rs

1pub mod backend;
2pub mod backend_sqlite;
3pub mod indexer;
4pub mod model;
5pub mod service;
6pub mod state_plugin;
7pub mod step_registry;
8
9// 导出类型
10pub use backend::{Backend, IndexMutation, SearchQuery, SqliteBackend};
11pub use service::{
12    IndexService, SearchService, IndexEvent, RebuildScope,
13    event_from_transaction,
14};
15pub use state_plugin::{
16    create_search_index_plugin, create_temp_search_index_plugin,
17};