Files
core/homeassistant/components/ntfy/const.py
Manu 3c174ce329 Add ntfy (ntfy.sh) integration (#135152)
Co-authored-by: Robert Resch <robert@resch.dev>
2025-04-23 14:52:13 +02:00

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"