mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 10:47:51 +00:00
9 lines
252 B
Python
9 lines
252 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)
|