core/homeassistant/components/radarr/const.py

20 lines
364 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
2023-10-08 17:39:56 +00:00
DEFAULT_MAX_RECORDS = 20
2022-09-23 02:16:24 +00:00
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__)