9 lines
136 B
Go
9 lines
136 B
Go
|
package cursortoken
|
||
|
|
||
|
type SortDirection string //@enum:type
|
||
|
|
||
|
const (
|
||
|
SortASC SortDirection = "ASC"
|
||
|
SortDESC SortDirection = "DESC"
|
||
|
)
|