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