mirror of
https://github.com/home-assistant/core.git
synced 2026-04-02 00:20:30 +01:00
20 lines
487 B
Python
20 lines
487 B
Python
"""Constants for the Dropbox integration."""
|
|
|
|
from collections.abc import Callable
|
|
|
|
from homeassistant.util.hass_dict import HassKey
|
|
|
|
DOMAIN = "dropbox"
|
|
|
|
OAUTH2_AUTHORIZE = "https://www.dropbox.com/oauth2/authorize"
|
|
OAUTH2_TOKEN = "https://api.dropboxapi.com/oauth2/token"
|
|
OAUTH2_SCOPES = [
|
|
"account_info.read",
|
|
"files.content.read",
|
|
"files.content.write",
|
|
]
|
|
|
|
DATA_BACKUP_AGENT_LISTENERS: HassKey[list[Callable[[], None]]] = HassKey(
|
|
f"{DOMAIN}.backup_agent_listeners"
|
|
)
|