mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +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
|
|
)
|