package utils 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"` }