mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-26 00:04:35 +01: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
|
|
]
|