mirror of
https://github.com/home-assistant/core.git
synced 2026-09-14 10:06:27 -05:00
7 lines
144 B
Python
7 lines
144 B
Python
"""Constants for the Snooz component."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "snooz"
|
|
PLATFORMS: list[Platform] = [Platform.FAN]
|