2022-03-30 11:18:48 +00:00
|
|
|
"""Constants for the Discord integration."""
|
|
|
|
|
|
|
|
from typing import Final
|
|
|
|
|
|
|
|
from homeassistant.const import CONF_URL
|
|
|
|
|
|
|
|
DEFAULT_NAME = "Discord"
|
|
|
|
DOMAIN: Final = "discord"
|
|
|
|
|
|
|
|
URL_PLACEHOLDER = {CONF_URL: "https://www.home-assistant.io/integrations/discord"}
|
2022-08-18 02:41:59 +00:00
|
|
|
|
|
|
|
DATA_HASS_CONFIG = "discord_hass_config"
|