6 lines
144 B
Python
6 lines
144 B
Python
"""Constants for the Snooz component."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "snooz"
|
|
PLATFORMS: list[Platform] = [Platform.FAN]
|