wisski-cloud-distillery/pkg/sqle/sqle.go
2022-09-19 23:16:56 +02:00

12 lines
285 B
Go

package sqle
import (
"github.com/feiin/sqlstring"
)
// TODO: This is really unsafe and shouldn't be used at all.
// Format formats the provided query with the given parameters.
func Format(query string, params ...interface{}) string {
return sqlstring.Format(query, params...)
}