7 lines
174 B
Python
7 lines
174 B
Python
"""Constants for the flo integration."""
|
|
CLIENT = "client"
|
|
DOMAIN = "flo"
|
|
FLO_HOME = "home"
|
|
FLO_AWAY = "away"
|
|
FLO_SLEEP = "sleep"
|
|
FLO_MODES = [FLO_HOME, FLO_AWAY, FLO_SLEEP]
|