15 lines
332 B
Go
15 lines
332 B
Go
package utils
|
|
|
|
type Error struct {
|
|
Type string `json:"type"`
|
|
Message string `json:"message"`
|
|
Code string `json:"code"`
|
|
}
|
|
|
|
type ValidationError struct {
|
|
Type string `json:"type"`
|
|
Message string `json:"message"`
|
|
Code string `json:"code"`
|
|
Fields map[string]string `json:"fields"`
|
|
}
|