From b1e51c2673b049e4a1ceb34301b58bd97bf2e7b2 Mon Sep 17 00:00:00 2001 From: Noah Held <41909795+zuqq@users.noreply.github.com> Date: Tue, 31 Oct 2023 14:59:24 +0000 Subject: [PATCH] Run `mage proto` (#3084) Signed-off-by: Noah Held --- pkg/api/api.swagger.go | 2 +- pkg/api/binoculars/api.swagger.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/api/api.swagger.go b/pkg/api/api.swagger.go index 7e1d88878e6..793704ab33d 100644 --- a/pkg/api/api.swagger.go +++ b/pkg/api/api.swagger.go @@ -9,7 +9,7 @@ package api // SwaggerJsonTemplate is a generated function returning the template as a string. // That string should be parsed by the functions of the golang's template package. func SwaggerJsonTemplate() string { - tmpl := "{\n" + + var tmpl = "{\n" + " \"consumes\": [\n" + " \"application/json\"\n" + " ],\n" + diff --git a/pkg/api/binoculars/api.swagger.go b/pkg/api/binoculars/api.swagger.go index 6597645b8a7..206e611b3c9 100644 --- a/pkg/api/binoculars/api.swagger.go +++ b/pkg/api/binoculars/api.swagger.go @@ -9,7 +9,7 @@ package binoculars // SwaggerJsonTemplate is a generated function returning the template as a string. // That string should be parsed by the functions of the golang's template package. func SwaggerJsonTemplate() string { - tmpl := "{\n" + + var tmpl = "{\n" + " \"consumes\": [\n" + " \"application/json\"\n" + " ],\n" +