mirror of
https://github.com/home-assistant/core.git
synced 2025-05-11 17:39:17 +00:00

* 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
|
|
]
|