mirror of
https://github.com/home-assistant/core.git
synced 2026-05-08 09:38:58 +01:00
ac2941569e
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
10 lines
190 B
Python
10 lines
190 B
Python
"""Constants for the Duck DNS integration."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN = "duckdns"
|
|
|
|
ATTR_CONFIG_ENTRY: Final = "config_entry_id"
|
|
ATTR_TXT: Final = "txt"
|
|
SERVICE_SET_TXT = "set_txt"
|