15 lines
233 B
Go
15 lines
233 B
Go
package models
|
|
|
|
type UtilRequestInfo struct {
|
|
Url string
|
|
Header string
|
|
Body string
|
|
Timeout int
|
|
}
|
|
|
|
type GinResponse struct {
|
|
Code int `json:"code"`
|
|
Msg interface{} `json:"msg"`
|
|
Data interface{} `json:"data"`
|
|
}
|