jet/sqlbuilder/row_type.go

11 lines
128 B
Go
Raw Normal View History

package sqlbuilder
type rowsType interface {
clause
hasRows()
}
type isRowsType struct{}
func (i *isRowsType) hasRows() {}