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

10 lines
253 B
Python

"""Constants for the mütesync integration."""
from datetime import timedelta
from typing import Final
DOMAIN: Final = "mutesync"
UPDATE_INTERVAL_NOT_IN_MEETING: Final = timedelta(seconds=10)
UPDATE_INTERVAL_IN_MEETING: Final = timedelta(seconds=10)