1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-20 02:48:57 +00:00
Files
core/homeassistant/components/qbus/const.py
2025-01-13 19:06:52 +00:00

13 lines
248 B
Python

"""Constants for the Qbus integration."""
from typing import Final
from homeassistant.const import Platform
DOMAIN: Final = "qbus"
PLATFORMS: list[Platform] = [Platform.SWITCH]
CONF_SERIAL_NUMBER: Final = "serial"
MANUFACTURER: Final = "Qbus"