mirror of
https://github.com/mattermost/focalboard.git
synced 2024-12-15 09:14:11 +02:00
10 lines
171 B
Go
10 lines
171 B
Go
package model
|
|
|
|
// ErrorResponse is an error response
|
|
// swagger:model
|
|
type ErrorResponse struct {
|
|
// The error message
|
|
// required: false
|
|
Error string `json:"error"`
|
|
}
|