mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* 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
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"`
|
|
}
|