core/homeassistant/components/ntfy/const.py

10 lines
168 B
Python

"""Constants for the ntfy integration."""
from typing import Final
DOMAIN = "ntfy"
DEFAULT_URL: Final = "https://ntfy.sh"
CONF_TOPIC = "topic"
SECTION_AUTH = "auth"