Files
loader/unlock_state.py
T
Oleksandr Bezdieniezhnykh 941b8199aa initial commit
Made-with: Cursor
2026-03-25 05:37:10 +02:00

12 lines
258 B
Python

from enum import Enum
class UnlockState(str, Enum):
idle = "idle"
authenticating = "authenticating"
downloading_key = "downloading_key"
decrypting = "decrypting"
loading_images = "loading_images"
ready = "ready"
error = "error"