1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-02 21:19:16 +00:00
2022-06-29 12:29:47 +02:00

10 lines
240 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__)