mirror of
https://github.com/home-assistant/core.git
synced 2025-05-02 21:19:16 +00:00
10 lines
240 B
Python
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__)
|