c62ccbd988
* Clean up status codes
* Missing consumes tag
* Regenerate
* Fix incorrect documented responses and missing UI elements
* Fix response docs
* Fix wrong response copy paste
* Regenerate
* Temporarily revert
(cherry picked from commit 17e76b06ff)
Co-authored-by: Alexander Weaver <weaver.alex.d@gmail.com>
14 lines
199 B
Go
14 lines
199 B
Go
package definitions
|
|
|
|
// swagger:model
|
|
type NotFound struct{}
|
|
|
|
// swagger:model
|
|
type Ack struct{}
|
|
|
|
// swagger:model
|
|
type ValidationError struct {
|
|
// example: error message
|
|
Msg string `json:"msg"`
|
|
}
|