Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Homeassistant Analytics integration."""
2 
3 import logging
4 
5 DOMAIN = "analytics_insights"
6 
7 CONF_TRACKED_ADDONS = "tracked_addons"
8 CONF_TRACKED_INTEGRATIONS = "tracked_integrations"
9 CONF_TRACKED_CUSTOM_INTEGRATIONS = "tracked_custom_integrations"
10 
11 LOGGER = logging.getLogger(__package__)