mirror of
https://github.com/home-assistant/core.git
synced 2025-05-02 21:19:16 +00:00

* Add config flow for `simplepush` * fix warning message * fix typos * Add importing yaml config * patch integration setup * Add check for errrors raised by the library * fix coverage * Adjust comment and logging message Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
14 lines
320 B
Python
14 lines
320 B
Python
"""Constants for the simplepush integration."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "simplepush"
|
|
DEFAULT_NAME: Final = "simplepush"
|
|
DATA_HASS_CONFIG: Final = "simplepush_hass_config"
|
|
|
|
ATTR_ENCRYPTED: Final = "encrypted"
|
|
ATTR_EVENT: Final = "event"
|
|
|
|
CONF_DEVICE_KEY: Final = "device_key"
|
|
CONF_SALT: Final = "salt"
|