forked from ebhomengo/niki
7 lines
134 B
Go
7 lines
134 B
Go
|
package httpmsg
|
||
|
|
||
|
type ErrorResponse struct {
|
||
|
Message string `json:"message"`
|
||
|
Errors map[string]string `json:"errors"`
|
||
|
}
|