jet/sqlbuilder/row_type.go
2019-06-15 13:58:45 +02:00

10 lines
128 B
Go

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