1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-22 11:59:34 +00:00
Files
core/homeassistant/components/technove/const.py
2024-03-08 10:35:23 -05:00

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)