markitect-main/markitect/plugins/builtin/search/__init__.py

12 lines
348 B
Python
Raw Normal View History

"""
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']