mirror of
https://github.com/home-assistant/core.git
synced 2025-05-16 20:09:14 +00:00
8 lines
174 B
Python
8 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]
|