aboutsummaryrefslogtreecommitdiff
path: root/utils/meta/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'utils/meta/types.go')
-rw-r--r--utils/meta/types.go26
1 files changed, 0 insertions, 26 deletions
diff --git a/utils/meta/types.go b/utils/meta/types.go
deleted file mode 100644
index c7b8e4d..0000000
--- a/utils/meta/types.go
+++ /dev/null
@@ -1,26 +0,0 @@
-package meta
-
-import (
- "dove/types"
-
- "github.com/gofiber/fiber/v2"
-)
-
-type request struct {
- types.Request
- context *fiber.Ctx
-}
-
-type value struct {
- data string
-}
-
-type Pagination struct {
- Page int
- PerPage int
-}
-
-type Sorting struct {
- Field string
- Direction string
-}