Coverage for mindsdb / integrations / handlers / google_calendar_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
5try:
6 from .google_calendar_handler import GoogleCalendarHandler as Handler
7 import_error = None
8except Exception as e:
9 Handler = None
10 import_error = e
12title = 'Google Calendar'
13name = 'google_calendar'
14type = HANDLER_TYPE.DATA
15icon_path = 'icon.svg'
18__all__ = [
19 'Handler', 'version', 'name', 'type', 'title', 'description', 'connection_args',
20 'import_error', 'icon_path'
21]