postgresql/stm_builder.go

11 lines
212 B
Go
Raw Normal View History

2021-08-09 03:24:54 +00:00
package postgresql
import (
"github.com/Masterminds/squirrel"
)
// GetStmBuilder ...
func GetStmBuilder() squirrel.StatementBuilderType {
return squirrel.StatementBuilder.PlaceholderFormat(squirrel.Dollar)
}