blob: 3bc8a0ebe5bb16d138c7dca2d7ea60334c5f5ad8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package meta
import (
"dove/types"
"github.com/gofiber/fiber/v2"
)
type request struct {
types.Request
context *fiber.Ctx
}
type value struct {
data string
}
|