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,10 @@
from enum import Enum
class RawScriptLanguage(str, Enum):
DENO = "deno"
PYTHON3 = "python3"
GO = "go"
def __str__(self) -> str:
return str(self.value)