Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the AdGuard Home integration."""
2 
3 import logging
4 
5 DOMAIN = "adguard"
6 
7 LOGGER = logging.getLogger(__package__)
8 
9 CONF_FORCE = "force"
10 
11 SERVICE_ADD_URL = "add_url"
12 SERVICE_DISABLE_URL = "disable_url"
13 SERVICE_ENABLE_URL = "enable_url"
14 SERVICE_REFRESH = "refresh"
15 SERVICE_REMOVE_URL = "remove_url"