core/homeassistant/components/adguard/const.py

15 lines
334 B
Python
Raw Normal View History

"""Constants for the AdGuard Home integration."""
2019-07-31 19:25:30 +00:00
DOMAIN = "adguard"
2019-07-31 19:25:30 +00:00
DATA_ADGUARD_CLIENT = "adguard_client"
DATA_ADGUARD_VERSION = "adguard_version"
2019-07-31 19:25:30 +00:00
CONF_FORCE = "force"
2019-07-31 19:25:30 +00:00
SERVICE_ADD_URL = "add_url"
SERVICE_DISABLE_URL = "disable_url"
SERVICE_ENABLE_URL = "enable_url"
SERVICE_REFRESH = "refresh"
SERVICE_REMOVE_URL = "remove_url"