mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 01:38:02 +00:00
13 lines
222 B
Python
13 lines
222 B
Python
"""Constants for the Sabnzbd component."""
|
|
|
|
DOMAIN = "sabnzbd"
|
|
|
|
ATTR_SPEED = "speed"
|
|
ATTR_API_KEY = "api_key"
|
|
|
|
DEFAULT_SPEED_LIMIT = "100"
|
|
|
|
SERVICE_PAUSE = "pause"
|
|
SERVICE_RESUME = "resume"
|
|
SERVICE_SET_SPEED = "set_speed"
|