mirror of
https://github.com/home-assistant/core.git
synced 2026-08-29 09:36:09 +01:00
10 lines
221 B
Python
10 lines
221 B
Python
"""Constants for Roborock."""
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "roborock"
|
|
CONF_ENTRY_CODE = "code"
|
|
CONF_BASE_URL = "base_url"
|
|
CONF_USER_DATA = "user_data"
|
|
|
|
PLATFORMS = [Platform.VACUUM, Platform.SELECT]
|