sorting.go

 1package cache
 2
 3type OrderBy int
 4
 5const (
 6	_ OrderBy = iota
 7	OrderById
 8	OrderByCreation
 9	OrderByEdit
10)
11
12type OrderDirection int
13
14const (
15	_ OrderDirection = iota
16	OrderAscending
17	OrderDescending
18)