Coverage for mindsdb / integrations / handlers / google_search_handler / connection_args.py: 0%
4 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 collections import OrderedDict
3from mindsdb.integrations.libs.const import HANDLER_CONNECTION_ARG_TYPE as ARG_TYPE
6connection_args = OrderedDict(
7 credentials={
8 'type': ARG_TYPE.PATH,
9 'description': 'The path to the credentials file. If not specified, the default credentials are used.'
10 }
11)
13connection_args_example = OrderedDict(
14 credentials='/path/to/credentials.json'
15)