aboutsummaryrefslogtreecommitdiffstats
path: root/cache/sorting.go
diff options
context:
space:
mode:
Diffstat (limited to 'cache/sorting.go')
-rw-r--r--cache/sorting.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/cache/sorting.go b/cache/sorting.go
deleted file mode 100644
index 19034a9d..00000000
--- a/cache/sorting.go
+++ /dev/null
@@ -1,18 +0,0 @@
-package cache
-
-type OrderBy int
-
-const (
- _ OrderBy = iota
- OrderById
- OrderByCreation
- OrderByEdit
-)
-
-type OrderDirection int
-
-const (
- _ OrderDirection = iota
- OrderAscending
- OrderDescending
-)