11 lines
212 B
Go
11 lines
212 B
Go
|
package postgresql
|
||
|
|
||
|
import (
|
||
|
"github.com/Masterminds/squirrel"
|
||
|
)
|
||
|
|
||
|
// GetStmBuilder ...
|
||
|
func GetStmBuilder() squirrel.StatementBuilderType {
|
||
|
return squirrel.StatementBuilder.PlaceholderFormat(squirrel.Dollar)
|
||
|
}
|