10 lines
191 B
Python
10 lines
191 B
Python
|
|
"""Tray-App und App-Zustände für whisper-local (Windows)."""
|
||
|
|
|
||
|
|
import enum
|
||
|
|
|
||
|
|
|
||
|
|
class AppState(enum.Enum):
|
||
|
|
WAITING = "waiting"
|
||
|
|
RECORDING = "recording"
|
||
|
|
TRANSCRIBING = "transcribing"
|