1
0
mirror of https://github.com/home-assistant/core.git synced 2026-06-03 22:24:02 +01:00
Files
core/homeassistant/components/discord/const.py
T
2022-03-30 13:18:48 +02:00

11 lines
249 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"}