1
mirror of https://github.com/home-assistant/core synced 2024-08-02 23:40:32 +02:00
ha-core/homeassistant/components/discord/const.py
2022-08-17 22:41:59 -04:00

13 lines
291 B
Python

"""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"}
DATA_HASS_CONFIG = "discord_hass_config"