mirror of
https://github.com/home-assistant/core.git
synced 2026-09-08 06:31:35 +01:00
11 lines
213 B
Python
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]
|