mirror of
https://github.com/home-assistant/core.git
synced 2026-08-29 18:25:07 -05:00
9 lines
193 B
Python
9 lines
193 B
Python
"""Constants for the AquaLogic integration."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "aqualogic"
|
|
PLATFORMS = [Platform.SENSOR, Platform.SWITCH]
|
|
|
|
UPDATE_TOPIC = f"{DOMAIN}_update"
|