Updated apps

This commit is contained in:
2026-07-20 22:52:35 -04:00
parent 28a8cb98f6
commit a0c3271743
1164 changed files with 94781 additions and 6892 deletions
+20
View File
@@ -0,0 +1,20 @@
"""Spook - Your homie."""
import logging
from typing import Final
from homeassistant.const import Platform
DOMAIN: Final = "spook"
LOGGER = logging.getLogger(__package__)
PLATFORMS: Final = [
Platform.BINARY_SENSOR,
Platform.BUTTON,
Platform.EVENT,
Platform.NUMBER,
Platform.SELECT,
Platform.SENSOR,
Platform.SWITCH,
Platform.TIME,
]