mirror of
https://github.com/home-assistant/core.git
synced 2026-08-14 17:23:33 +01:00
12 lines
334 B
Python
12 lines
334 B
Python
"""Const for Mailgun."""
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.util.hass_dict import HassKey
|
|
|
|
DOMAIN = "mailgun"
|
|
|
|
# YAML component config (api_key / domain / sandbox) used by notify + webhook verify.
|
|
# Domain-level, not per config entry — entries only register webhooks.
|
|
DATA_CONFIG: HassKey[dict[str, Any]] = HassKey(DOMAIN)
|