Files
gocqlx/qb/qb.go
Michał Matczuk 41bb8def2a qb: doc
2017-07-31 15:30:26 +02:00

8 lines
196 B
Go

package qb
// Builder is interface implemented by all the builders.
type Builder interface {
// ToCql builds the query into a CQL string and named args.
ToCql() (stmt string, names []string)
}