aboutsummaryrefslogtreecommitdiffstats
path: root/cache/sorting.go
blob: 19034a9d9198511002b25b2bdd7c8f92c3dfcf8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package cache

type OrderBy int

const (
	_ OrderBy = iota
	OrderById
	OrderByCreation
	OrderByEdit
)

type OrderDirection int

const (
	_ OrderDirection = iota
	OrderAscending
	OrderDescending
)