mirror of
https://github.com/azaion/loader.git
synced 2026-04-22 11:46:32 +00:00
941b8199aa
Made-with: Cursor
12 lines
258 B
Python
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"
|