core/homeassistant/components/qnap_qsw/const.py

15 lines
257 B
Python

"""Constants for the QNAP QSW integration."""
from typing import Final
ATTR_MAX: Final = "max"
ATTR_MESSAGE: Final = "message"
DOMAIN: Final = "qnap_qsw"
MANUFACTURER: Final = "QNAP"
RPM: Final = "rpm"
QSW_REBOOT = "reboot"
QSW_TIMEOUT_SEC: Final = 25