13 lines
139 B
Go
13 lines
139 B
Go
package gorm
|
|
|
|
type pgx struct {
|
|
postgres
|
|
}
|
|
|
|
func init() {
|
|
RegisterDialect("pgx", &pgx{})
|
|
}
|
|
|
|
func (pgx) GetName() string {
|
|
return "pgx"
|
|
} |