mirror of
https://github.com/home-assistant/core.git
synced 2025-06-07 14:47:12 +00:00
12 lines
236 B
Python
12 lines
236 B
Python
"""Constants for the Bring! integration."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN = "bring"
|
|
|
|
ATTR_SENDER: Final = "sender"
|
|
ATTR_ITEM_NAME: Final = "item"
|
|
ATTR_NOTIFICATION_TYPE: Final = "message"
|
|
|
|
SERVICE_PUSH_NOTIFICATION = "send_message"
|