1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-24 09:20:11 +01:00
Files
core/homeassistant/components/tautulli/const.py
T
2024-03-08 10:35:23 -05:00

11 lines
241 B
Python

"""Constants for the Tautulli integration."""
from logging import Logger, getLogger
ATTR_TOP_USER = "top_user"
CONF_MONITORED_USERS = "monitored_users"
DEFAULT_NAME = "Tautulli"
DOMAIN = "tautulli"
LOGGER: Logger = getLogger(__package__)