mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-19 16:05:26 +03:00
19 lines
196 B
Go
19 lines
196 B
Go
|
package cache
|
||
|
|
||
|
type OrderBy int
|
||
|
|
||
|
const (
|
||
|
_ OrderBy = iota
|
||
|
OrderById
|
||
|
OrderByCreation
|
||
|
OrderByEdit
|
||
|
)
|
||
|
|
||
|
type OrderDirection int
|
||
|
|
||
|
const (
|
||
|
_ OrderDirection = iota
|
||
|
OrderAscending
|
||
|
OrderDescending
|
||
|
)
|