11 lines
175 B
Python
11 lines
175 B
Python
from enum import Enum
|
|
|
|
|
|
class ScriptLanguage(str, Enum):
|
|
PYTHON3 = "python3"
|
|
DENO = "deno"
|
|
GO = "go"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|