8 lines
121 B
Go
8 lines
121 B
Go
package types
|
|
|
|
type Response struct {
|
|
Code int32 `json:"code"`
|
|
Type string `json:"type"`
|
|
Data string `json:"data"`
|
|
}
|