Add CLI subcommands and doctor diagnostics

This commit is contained in:
Thales Maciel 2026-02-26 17:38:06 -03:00
parent 9c7d7b35b1
commit ad1af63fac
7 changed files with 385 additions and 13 deletions

View file

@ -8,6 +8,9 @@ class DesktopAdapter(Protocol):
def start_hotkey_listener(self, hotkey: str, callback: Callable[[], None]) -> None:
raise NotImplementedError
def validate_hotkey(self, hotkey: str) -> None:
raise NotImplementedError
def start_cancel_listener(self, callback: Callable[[], None]) -> None:
raise NotImplementedError