8 lines
183 B
Python
8 lines
183 B
Python
""" Ecovacs constants. """
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "ecovacs"
|
|
PLATFORMS = [Platform.Vacuum]
|
|
ECOVACS_DEVICES = "ecovacs_devices"
|
|
|
|
CONF_CONTINENT = "continent" |