Files
core/homeassistant/components/besen/const.py
T

11 lines
213 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.SENSOR, Platform.SWITCH]