summaryrefslogtreecommitdiff
path: root/shrine/utils/meta/types.go
blob: eb4c2cda9384826084228c353d39164e129bfdaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package meta

import (
	"shrine/types/hypertext"

	"github.com/gofiber/fiber/v2"
)

type facade struct {
	hypertext.Request
	context *fiber.Ctx
}

type required struct {
	request hypertext.Request
	context *fiber.Ctx
}

type withDefault struct {
	request  hypertext.Request
	context  *fiber.Ctx
	defaults string
}