Radarr Config Flow (#78965)
This commit is contained in:
parent
6b0c9b6a6a
commit
0ccb495209
21 changed files with 1291 additions and 634 deletions
11
homeassistant/components/radarr/const.py
Normal file
11
homeassistant/components/radarr/const.py
Normal 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__)
|
Loading…
Add table
Add a link
Reference in a new issue