This commit is contained in:
Ruben Fiszel
2024-01-16 23:46:36 +01:00
parent 640ebcb146
commit f782e009cd
1696 changed files with 160145 additions and 0 deletions
@@ -0,0 +1,19 @@
from enum import Enum
class RawScriptLanguage(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)