mirror of
https://github.com/home-assistant/core.git
synced 2025-12-20 02:48:57 +00:00
10 lines
242 B
Python
10 lines
242 B
Python
"""Constants for the La Marzocco integration."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "lamarzocco"
|
|
|
|
CONF_USE_BLUETOOTH: Final = "use_bluetooth"
|
|
CONF_INSTALLATION_KEY: Final = "installation_key"
|
|
CONF_OFFLINE_MODE: Final = "offline_mode"
|