Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Discord integration."""
2 
3 from typing import Final
4 
5 from homeassistant.const import CONF_URL
6 
7 DEFAULT_NAME = "Discord"
8 DOMAIN: Final = "discord"
9 
10 URL_PLACEHOLDER = {CONF_URL: "https://www.home-assistant.io/integrations/discord"}
11 
12 DATA_HASS_CONFIG = "discord_hass_config"