Files
gocqlx/qb/qb.go
Michał Matczuk 3b3c7087d2 qb: interface
2017-07-28 12:11:43 +02:00

7 lines
195 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)
}