plugin/template: fix formatting with go fmt (#5622)

Signed-off-by: Erik Johansson <ejohansson@spotify.com>

Signed-off-by: Erik Johansson <ejohansson@spotify.com>
This commit is contained in:
Erik Johansson
2022-09-15 12:48:38 -07:00
committed by GitHub
parent e93e932ce8
commit 0032be6a56
2 changed files with 5 additions and 5 deletions

View File

@@ -151,10 +151,10 @@ func executeRRTemplate(server, view, section string, template *gotmpl.Template,
}
func newTemplate(name, text string) (*gotmpl.Template, error) {
funcMap := gotmpl.FuncMap{
"parseInt": strconv.ParseUint,
}
return gotmpl.New(name).Funcs(funcMap).Parse(text)
funcMap := gotmpl.FuncMap{
"parseInt": strconv.ParseUint,
}
return gotmpl.New(name).Funcs(funcMap).Parse(text)
}
func (t template) match(ctx context.Context, state request.Request) (*templateData, bool, bool) {