Files
fn-serverless/api/models/error_body.go
Carlos C d5fb1afda7 Revert "Assert License (#224)"
This reverts commit a61c4dab78.
2016-11-06 09:25:12 -08:00

12 lines
219 B
Go

package models
type ErrorBody struct {
Fields string `json:"fields,omitempty"`
Message string `json:"message,omitempty"`
}
// Validate validates this error body
func (m *ErrorBody) Validate() error {
return nil
}