mirror of
https://github.com/home-assistant/core.git
synced 2025-06-04 13:17:06 +00:00

Co-authored-by: Abílio Costa <abmantis@users.noreply.github.com> Co-authored-by: Thomas D <11554546+thomasddn@users.noreply.github.com>
13 lines
248 B
Python
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"
|