Add pipeline engine and remove legacy compatibility paths

This commit is contained in:
Thales Maciel 2026-02-25 22:40:03 -03:00
parent 3bc473262d
commit e221d49020
18 changed files with 1523 additions and 399 deletions

View file

@ -5,7 +5,7 @@ from typing import Callable, Protocol
class DesktopAdapter(Protocol):
def start_hotkey_listener(self, hotkey: str, callback: Callable[[], None]) -> None:
def set_hotkeys(self, bindings: dict[str, Callable[[], None]]) -> None:
raise NotImplementedError
def start_cancel_listener(self, callback: Callable[[], None]) -> None: