mirror of
https://github.com/home-assistant/core.git
synced 2026-06-02 13:44:32 +01:00
fc3843f5e2
Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
13 lines
323 B
Python
13 lines
323 B
Python
"""Constants for the pushbullet integration."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "pushbullet"
|
|
DEFAULT_NAME: Final = "Pushbullet"
|
|
DATA_HASS_CONFIG: Final = "pushbullet_hass_config"
|
|
DATA_UPDATED: Final = "pushbullet_data_updated"
|
|
|
|
ATTR_URL: Final = "url"
|
|
ATTR_FILE: Final = "file"
|
|
ATTR_FILE_URL: Final = "file_url"
|