8 lines
119 B
Python
8 lines
119 B
Python
from enum import Enum
|
|
|
|
|
|
class UserRole(str, Enum):
|
|
ADMIN = "admin"
|
|
OPERATOR = "operator"
|
|
VIEWER = "viewer"
|