12 lines
174 B
Go
12 lines
174 B
Go
|
package util
|
||
|
|
||
|
type Response struct {
|
||
|
Code int `json:"code"`
|
||
|
Message string `json:"message"`
|
||
|
}
|
||
|
|
||
|
type DataResponse struct {
|
||
|
Response
|
||
|
Data interface{} `json:"data"`
|
||
|
}
|