save code
This commit is contained in:
parent
a968d31e33
commit
cdc5f556e5
20
define/request.go
Normal file
20
define/request.go
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
// Package define ...
|
||||||
|
//
|
||||||
|
// Description : define ...
|
||||||
|
//
|
||||||
|
// Author : go_developer@163.com<白茶清欢>
|
||||||
|
//
|
||||||
|
// Date : 2024-05-24 17:09
|
||||||
|
package define
|
||||||
|
|
||||||
|
// Request 请求配置
|
||||||
|
//
|
||||||
|
// Author : go_developer@163.com<白茶清欢>
|
||||||
|
//
|
||||||
|
// Date : 17:10 2024/5/24
|
||||||
|
type Request struct {
|
||||||
|
Body map[string]any `json:"body"` // 请求Body
|
||||||
|
Header map[string]string `json:"header"` // 请求Header
|
||||||
|
Cookie map[string]string `json:"cookie"` // 请求Cookie
|
||||||
|
Query map[string]string `json:"query"` // 请求query
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user