mirror of
https://github.com/mattermost/focalboard.git
synced 2025-02-04 19:15:49 +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"`
|
||
|
}
|