mirror of
https://github.com/esphome/esphome.git
synced 2024-11-26 08:55:22 +01:00
83a1fc5fdb
* dashboard: move storage json update to a background task in edit save * dashboard: move storage json update to a background task in edit save * fix typing * docs
12 lines
292 B
Python
12 lines
292 B
Python
from __future__ import annotations
|
|
|
|
EVENT_ENTRY_ADDED = "entry_added"
|
|
EVENT_ENTRY_REMOVED = "entry_removed"
|
|
EVENT_ENTRY_UPDATED = "entry_updated"
|
|
EVENT_ENTRY_STATE_CHANGED = "entry_state_changed"
|
|
MAX_EXECUTOR_WORKERS = 48
|
|
|
|
|
|
SENTINEL = object()
|
|
|
|
DASHBOARD_COMMAND = ["esphome", "--dashboard"]
|