mirror of
https://github.com/home-assistant/core.git
synced 2025-11-27 11:38:01 +00:00
Co-authored-by: Franck Nijhof <frenck@frenck.nl> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
8 lines
138 B
Python
8 lines
138 B
Python
"""Constants for the Duck DNS integration."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN = "duckdns"
|
|
|
|
ATTR_CONFIG_ENTRY: Final = "config_entry_id"
|