mirror of
https://github.com/home-assistant/core.git
synced 2026-04-21 00:49:54 +02:00
10 lines
198 B
Python
10 lines
198 B
Python
"""Constants for the Duco integration."""
|
|
|
|
from datetime import timedelta
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "duco"
|
|
PLATFORMS = [Platform.FAN]
|
|
SCAN_INTERVAL = timedelta(seconds=30)
|