Add config flow to tautulli integration (#57450)

This commit is contained in:
Robert Hillis 2022-04-26 19:37:13 -04:00 committed by GitHub
parent 8a2b20faf0
commit 09a7116efc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 1441 additions and 87 deletions

View file

@ -1,5 +1,11 @@
"""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__)