mirror of
https://github.com/home-assistant/core.git
synced 2026-06-04 22:53:54 +01:00
a3f3586b02
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
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"
|