Alerting: Re-generate swagger definitions (#62154)

Regenerate swagger, add body binding so parameters work
This commit is contained in:
Alexander Weaver
2023-01-25 15:01:42 -06:00
committed by GitHub
parent 4a1d418157
commit eb1293ebb1
7 changed files with 523 additions and 277 deletions
@@ -176,6 +176,12 @@ type ResponseDetails struct {
Msg string `json:"msg"`
}
// swagger:parameters BacktestConfig
type BacktestConfigRequest struct {
// in:body
Body BacktestConfig
}
// swagger:model
type BacktestConfig struct {
From time.Time `json:"from"`