package http_model type CommonResponse struct { Status int32 `json:"status"` Message string `json:"message"` Data interface{} `json:"data"` } type CommonRequest interface { }