gosdk/util/type.go

12 lines
174 B
Go
Raw Permalink Normal View History

2024-01-21 18:12:39 +08:00
package util
type Response struct {
Code int `json:"code"`
Message string `json:"message"`
}
type DataResponse struct {
Response
Data interface{} `json:"data"`
}