8 lines
121 B
Go
8 lines
121 B
Go
package db_dialects
|
|
|
|
const (
|
|
SqlServer string = "sqlserver"
|
|
Postgres string = "postgres"
|
|
Null string = "null"
|
|
)
|