17 lines
496 B
Python
17 lines
496 B
Python
|
|
"""
|
||
|
|
Query Paradigms - A unified interface to explore different query approaches in MarkiTect.
|
||
|
|
|
||
|
|
This module provides a "zoo" of query paradigms that demonstrates various ways
|
||
|
|
to query and interact with MarkiTect data, helping users discover the most
|
||
|
|
appropriate approach for their needs.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .registry import QueryParadigmRegistry
|
||
|
|
from .base import BaseQueryParadigm, QueryResult
|
||
|
|
from .paradigms import *
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
'QueryParadigmRegistry',
|
||
|
|
'BaseQueryParadigm',
|
||
|
|
'QueryResult'
|
||
|
|
]
|