Coverage for mindsdb / integrations / handlers / pinot_handler / __init__.py: 0%
14 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-21 00:36 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-21 00:36 +0000
1from mindsdb.integrations.libs.const import HANDLER_TYPE
3from .__about__ import __version__ as version, __description__ as description
4from .connection_args import connection_args, connection_args_example
5try:
6 from .pinot_handler import PinotHandler as Handler
7 import_error = None
8except Exception as e:
9 Handler = None
10 import_error = e
12title = 'Apache Pinot'
13name = 'pinot'
14type = HANDLER_TYPE.DATA
15icon_path = 'icon.svg'
17__all__ = [
18 'Handler', 'version', 'name', 'type', 'title', 'description',
19 'connection_args', 'connection_args_example', 'import_error', 'icon_path'
20]