mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-23 00:00:33 +00:00
11 lines
216 B
Python
11 lines
216 B
Python
from enum import Enum
|
|
|
|
class AuditLogActionKind(str, Enum):
|
|
CREATED = "Created"
|
|
DELETE = "Delete"
|
|
EXECUTE = "Execute"
|
|
UPDATED = "Updated"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|