mirror of
https://github.com/home-assistant/core.git
synced 2025-05-20 05:49:15 +00:00
12 lines
305 B
Python
12 lines
305 B
Python
"""Constants for the Homeassistant Analytics integration."""
|
|
|
|
import logging
|
|
|
|
DOMAIN = "analytics_insights"
|
|
|
|
CONF_TRACKED_ADDONS = "tracked_addons"
|
|
CONF_TRACKED_INTEGRATIONS = "tracked_integrations"
|
|
CONF_TRACKED_CUSTOM_INTEGRATIONS = "tracked_custom_integrations"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|