8 lines
165 B
Go
8 lines
165 B
Go
|
package models
|
||
|
|
||
|
type Response struct {
|
||
|
Status int `json:"status"`
|
||
|
Info string `json:"info,omitempty"`
|
||
|
Data interface{} `json:"data,omitempty"`
|
||
|
}
|