hass-core/homeassistant/components/onboarding/const.py

16 lines
240 B
Python
Raw Normal View History

"""Constants for the onboarding component."""
DOMAIN = 'onboarding'
STEP_USER = 'user'
STEP_INTEGRATION = 'integration'
STEPS = [
STEP_USER,
STEP_INTEGRATION,
]
DEFAULT_AREAS = (
'living_room',
'kitchen',
'bedroom',
)