11 lines
128 B
Go
11 lines
128 B
Go
|
|
package sqlbuilder
|
||
|
|
|
||
|
|
type rowsType interface {
|
||
|
|
clause
|
||
|
|
hasRows()
|
||
|
|
}
|
||
|
|
|
||
|
|
type isRowsType struct{}
|
||
|
|
|
||
|
|
func (i *isRowsType) hasRows() {}
|