mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 08:01:25 +00:00
12 lines
237 B
Python
12 lines
237 B
Python
from enum import Enum
|
|
|
|
class NewScriptKind(str, Enum):
|
|
APPROVAL = "approval"
|
|
COMMAND = "command"
|
|
FAILURE = "failure"
|
|
SCRIPT = "script"
|
|
TRIGGER = "trigger"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|