core/homeassistant/components/radarr/const.py

19 lines
339 B
Python
Raw Normal View History

2022-09-23 02:16:24 +00:00
"""Constants for Radarr."""
import logging
from typing import Final
DOMAIN: Final = "radarr"
# Defaults
DEFAULT_NAME = "Radarr"
DEFAULT_URL = "http://127.0.0.1:7878"
HEALTH_ISSUES = (
"DownloadClientCheck",
"DownloadClientStatusCheck",
"IndexerRssCheck",
"IndexerSearchCheck",
)
2022-09-23 02:16:24 +00:00
LOGGER = logging.getLogger(__package__)