1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-20 18:08:00 +00:00
Files
2026-02-04 10:16:47 +01:00

20 lines
340 B
Python

"""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",
)
LOGGER = logging.getLogger(__package__)