hass-core/homeassistant/components/onboarding/const.py
Paulus Schoutsen b0a3207454
Add onboarding support (#15492)
* Add onboarding support

* Lint

* Address comments

* Mark user step as done if owner user already created
2018-07-17 10:49:15 +02:00

7 lines
114 B
Python

"""Constants for the onboarding component."""
DOMAIN = 'onboarding'
STEP_USER = 'user'
STEPS = [
STEP_USER
]