convox/pkg/api/sort.go
2019-08-20 16:05:16 -04:00

6 lines
62 B
Go

package api
type Sortable interface {
Less(int, int) bool
}