mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 18:27:51 +00:00
10 lines
192 B
Python
10 lines
192 B
Python
"""Constants for the TechnoVE integration."""
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
DOMAIN = "technove"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
SCAN_INTERVAL = timedelta(seconds=5)
|