aboutsummaryrefslogblamecommitdiffstats
path: root/cache/sorting.go
blob: 19034a9d9198511002b25b2bdd7c8f92c3dfcf8a (plain) (tree)
1
2

             















                               
package cache

type OrderBy int

const (
	_ OrderBy = iota
	OrderById
	OrderByCreation
	OrderByEdit
)

type OrderDirection int

const (
	_ OrderDirection = iota
	OrderAscending
	OrderDescending
)