* Adds AdGuard Home integration * 👕 Addresses linting warnings * 🚑 Fixes typehint in async_setup_entry * 👕 Take advantage of Python's coalescing operators * 👕 Use adguard instance from outer scope directly in service calls * 👕 Use more sensible scan_interval default for sensors * 👕 Adds specific files to .coveragerc * ☔ Added tests and small changes to improve coverage * 🔨 Import adguardhome dependencies at the top * 🚑 Converted service handlers to be async * 🔥 Removed init step from config flow
14 lines
333 B
Python
14 lines
333 B
Python
"""Constants for the AdGuard Home integration."""
|
|
|
|
DOMAIN = 'adguard'
|
|
|
|
DATA_ADGUARD_CLIENT = 'adguard_client'
|
|
DATA_ADGUARD_VERION = 'adguard_version'
|
|
|
|
CONF_FORCE = 'force'
|
|
|
|
SERVICE_ADD_URL = 'add_url'
|
|
SERVICE_DISABLE_URL = 'disable_url'
|
|
SERVICE_ENABLE_URL = 'enable_url'
|
|
SERVICE_REFRESH = 'refresh'
|
|
SERVICE_REMOVE_URL = 'remove_url'
|