mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 16:02:19 +00:00
lsp
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class ScriptLanguage(str, Enum):
|
||||
PYTHON3 = "python3"
|
||||
DENO = "deno"
|
||||
GO = "go"
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
||||
Reference in New Issue
Block a user