8 lines
202 B
Go
8 lines
202 B
Go
package main
|
|
|
|
// Message represents response with information about results of something
|
|
type Message struct {
|
|
Message string `json:"message,omitempty"`
|
|
Errors []string `json:"errors,omitempty"`
|
|
}
|