This commit is contained in:
2023-06-06 21:18:40 +02:00
parent 1fbae343a4
commit c338d23070
14 changed files with 1076 additions and 9 deletions

8
cursortoken/direction.go Normal file
View File

@@ -0,0 +1,8 @@
package cursortoken
type SortDirection string //@enum:type
const (
SortASC SortDirection = "ASC"
SortDESC SortDirection = "DESC"
)