From 79d3c2bfd95c5cb0ac6e4a3f97156161d792c676 Mon Sep 17 00:00:00 2001 From: René 'Necoro' Neumann Date: Sun, 24 Apr 2022 18:53:32 +0200 Subject: Replace `interface{}` by `any` --- internal/feed/template/funcs.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'internal/feed/template/funcs.go') diff --git a/internal/feed/template/funcs.go b/internal/feed/template/funcs.go index 30a2975..fbfb572 100644 --- a/internal/feed/template/funcs.go +++ b/internal/feed/template/funcs.go @@ -10,8 +10,8 @@ import ( ) // dict creates a map out of the passed in key/value pairs. -func dict(v ...interface{}) map[string]interface{} { - dict := make(map[string]interface{}) +func dict(v ...any) map[string]any { + dict := make(map[string]any) lenv := len(v) for i := 0; i < lenv; i += 2 { key := v[i].(string) @@ -63,7 +63,7 @@ func _html(s string) html.HTML { return html.HTML(s) } -var funcMap = map[string]interface{}{ +var funcMap = map[string]any{ "dict": dict, "join": join, "lastUrlPart": lastUrlPart, -- cgit v1.2.3-70-g09d2