mirror of
https://github.com/home-assistant/core.git
synced 2025-05-09 16:39:22 +00:00
17 lines
361 B
Python
17 lines
361 B
Python
"""Constants for the Slack integration."""
|
|
from typing import Final
|
|
|
|
ATTR_BLOCKS = "blocks"
|
|
ATTR_BLOCKS_TEMPLATE = "blocks_template"
|
|
ATTR_FILE = "file"
|
|
ATTR_PASSWORD = "password"
|
|
ATTR_PATH = "path"
|
|
ATTR_URL = "url"
|
|
ATTR_USERNAME = "username"
|
|
|
|
CONF_DEFAULT_CHANNEL = "default_channel"
|
|
|
|
DATA_CLIENT = "client"
|
|
DEFAULT_TIMEOUT_SECONDS = 15
|
|
DOMAIN: Final = "slack"
|