1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-26 18:26:25 +01:00
Files
core/homeassistant/components/onboarding/const.py
T
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
]