9 lines
199 B
Python
9 lines
199 B
Python
|
"""Constants for the Airzone Cloud integration."""
|
||
|
|
||
|
from typing import Final
|
||
|
|
||
|
DOMAIN: Final[str] = "airzone_cloud"
|
||
|
MANUFACTURER: Final[str] = "Airzone"
|
||
|
|
||
|
AIOAIRZONE_CLOUD_TIMEOUT_SEC: Final[int] = 30
|