Coverage for mindsdb / integrations / handlers / libsql_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 database={
8 "type": ARG_TYPE.STR,
9 "description": "The database file where the data will be stored.",
10 },
11 sync_url={
12 "type": ARG_TYPE.STR,
13 "description": "The database URL where the data is synced with.",
14 },
15 auth_token={
16 "type": ARG_TYPE.STR,
17 "description": "The JWT auth token to authenticate with the sync database.",
18 "secret": True
19 },
20)
22connection_args_example = OrderedDict(database="chinook.db")