mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 08:01:25 +00:00
sqlx
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
from enum import Enum
|
||||
|
||||
class ScriptKind(str, Enum):
|
||||
APPROVAL = "approval"
|
||||
COMMAND = "command"
|
||||
FAILURE = "failure"
|
||||
SCRIPT = "script"
|
||||
TRIGGER = "trigger"
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
||||
Reference in New Issue
Block a user