mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-26 14:03:45 +01:00
12 lines
257 B
Python
12 lines
257 B
Python
"""Constants for the Autarco integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "autarco"
|
|
LOGGER = logging.getLogger(__package__)
|
|
SCAN_INTERVAL = timedelta(minutes=5)
|