goext/cursortoken/direction.go

9 lines
136 B
Go
Raw Permalink Normal View History

2023-06-06 21:18:40 +02:00
package cursortoken
type SortDirection string //@enum:type
const (
SortASC SortDirection = "ASC"
SortDESC SortDirection = "DESC"
)