auth-api/src/handlers/types.go

8 lines
186 B
Go
Raw Normal View History

2020-12-29 13:46:58 +01:00
package handlers
// ResJSONError is an error field that is used in JSON error responses
type ResJSONError struct {
Error string `json:"error"`
Field string `json:"field,omitempty"`
}