mirror of
https://github.com/home-assistant/core.git
synced 2025-11-10 03:19:34 +00:00
10 lines
168 B
Python
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"
|