Radarr Config Flow (#78965)

This commit is contained in:
Robert Hillis 2022-09-22 22:16:24 -04:00 committed by GitHub
parent 6b0c9b6a6a
commit 0ccb495209
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 1291 additions and 634 deletions

View file

@ -0,0 +1,11 @@
"""Constants for Radarr."""
import logging
from typing import Final
DOMAIN: Final = "radarr"
# Defaults
DEFAULT_NAME = "Radarr"
DEFAULT_URL = "http://127.0.0.1:7878"
LOGGER = logging.getLogger(__package__)