8 lines
114 B
Python
8 lines
114 B
Python
|
"""Constants for the onboarding component."""
|
||
|
DOMAIN = 'onboarding'
|
||
|
STEP_USER = 'user'
|
||
|
|
||
|
STEPS = [
|
||
|
STEP_USER
|
||
|
]
|