Files

11 lines
230 B
Python

"""Constants for the Besen integration."""
from typing import Final
from homeassistant.const import Platform
DOMAIN: Final = "besen"
NAME: Final = "Besen"
PLATFORMS: Final = [Platform.NUMBER, Platform.SENSOR, Platform.SWITCH]