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