summaryrefslogtreecommitdiff
path: root/shrine/types/hypertext/request.go
blob: 8a4607154e7bc10c69471d08c240542d7ce95b38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package hypertext

type Param struct {
	Key   string
	Value string
}

type Request struct {
	Path        string
	Method      string
	Query       []Param
	Params      []Param
	Headers     []Param
	QueryString string
	IP          string
	URL         string
}