hass-core/homeassistant/components/tautulli/const.py
2022-04-27 01:37:13 +02:00

11 lines
298 B
Python

"""Constants for the Tautulli integration."""
from logging import Logger, getLogger
CONF_MONITORED_USERS = "monitored_users"
DEFAULT_NAME = "Tautulli"
DEFAULT_PATH = ""
DEFAULT_PORT = "8181"
DEFAULT_SSL = False
DEFAULT_VERIFY_SSL = True
DOMAIN = "tautulli"
LOGGER: Logger = getLogger(__package__)