mirror of
https://github.com/home-assistant/core.git
synced 2026-02-22 02:47:14 +00:00
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"
|