mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 08:01:25 +00:00
20 lines
413 B
Python
20 lines
413 B
Python
from enum import Enum
|
|
|
|
class PreviewLanguage(str, Enum):
|
|
BASH = "bash"
|
|
BIGQUERY = "bigquery"
|
|
BUN = "bun"
|
|
DENO = "deno"
|
|
GO = "go"
|
|
GRAPHQL = "graphql"
|
|
MSSQL = "mssql"
|
|
MYSQL = "mysql"
|
|
NATIVETS = "nativets"
|
|
POSTGRESQL = "postgresql"
|
|
POWERSHELL = "powershell"
|
|
PYTHON3 = "python3"
|
|
SNOWFLAKE = "snowflake"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|