8 lines
127 B
Go
8 lines
127 B
Go
package common
|
|
|
|
type Response struct {
|
|
Status string
|
|
Code string `json:"omitempty"`
|
|
Message string `json:"omitempty"`
|
|
}
|