Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Tautulli integration."""
2 
3 from logging import Logger, getLogger
4 
5 ATTR_TOP_USER = "top_user"
6 
7 CONF_MONITORED_USERS = "monitored_users"
8 DEFAULT_NAME = "Tautulli"
9 DOMAIN = "tautulli"
10 LOGGER: Logger = getLogger(__package__)