mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-21 11:08:55 +00:00
7 lines
89 B
Python
7 lines
89 B
Python
|
from enum import Enum
|
||
|
|
||
|
class PasswordView(Enum):
|
||
|
RESTART_STATUS = 'Restart status'
|
||
|
|
||
|
|