This commit is contained in:
Ruben Fiszel
2022-10-08 13:25:07 +02:00
parent 6ebedfc5fb
commit ac09681d49
1430 changed files with 95542 additions and 14 deletions

View File

@@ -0,0 +1,11 @@
from enum import Enum
class ScriptKind(str, Enum):
SCRIPT = "script"
FAILURE = "failure"
TRIGGER = "trigger"
COMMAND = "command"
def __str__(self) -> str:
return str(self.value)