12 lines
348 B
Python
12 lines
348 B
Python
|
|
"""
|
||
|
|
Full text search plugin for MarkiTect using SQLite FTS5.
|
||
|
|
|
||
|
|
Provides lightweight, high-performance full text search capabilities
|
||
|
|
as a plugin to the MarkiTect system.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .fts_search import FTSSearchPlugin
|
||
|
|
from .indexer import SearchIndexer
|
||
|
|
from .query_parser import QueryParser
|
||
|
|
|
||
|
|
__all__ = ['FTSSearchPlugin', 'SearchIndexer', 'QueryParser']
|