1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-26 04:46:08 +00:00
Files
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

8 lines
114 B
Python

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