完成client的构建

This commit is contained in:
2024-05-31 18:00:24 +08:00
parent 2be9c90b79
commit a0adefcc0c
7 changed files with 77 additions and 10 deletions

View File

@ -13,6 +13,7 @@ package define
//
// Date : 17:10 2024/5/24
type Request struct {
PathParam map[string]string `json:"path_param"` // 替换url中的占位符
Body map[string]any `json:"body"` // 请求Body
Header map[string]string `json:"header"` // 请求Header
Cookie map[string]string `json:"cookie"` // 请求Cookie