mirror of
https://github.com/home-assistant/core.git
synced 2026-05-26 18:26:25 +01:00
b0a3207454
* Add onboarding support * Lint * Address comments * Mark user step as done if owner user already created
8 lines
114 B
Python
8 lines
114 B
Python
"""Constants for the onboarding component."""
|
|
DOMAIN = 'onboarding'
|
|
STEP_USER = 'user'
|
|
|
|
STEPS = [
|
|
STEP_USER
|
|
]
|