sqlx
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
from enum import Enum
|
||||
|
||||
class ScriptLanguage(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)
|
||||
Reference in New Issue
Block a user