From b80853de90b10171155b8f3fde47d64ec7bfa0dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Thu, 17 Mar 2022 22:03:27 +0100 Subject: all: gofmt -w -r 'interface{} -> any' . Updates #9687 --- modules/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/config.go') diff --git a/modules/config.go b/modules/config.go index 4b39636cd..ada39cc1f 100644 --- a/modules/config.go +++ b/modules/config.go @@ -270,7 +270,7 @@ type Config struct { Imports []Import // Meta info about this module (license information etc.). - Params map[string]interface{} + Params map[string]any // Will be validated against the running Hugo version. HugoVersion HugoVersion @@ -386,10 +386,10 @@ type Mount struct { Lang string // any language code associated with this mount. // Include only files matching the given Glob patterns (string or slice). - IncludeFiles interface{} + IncludeFiles any // Exclude all files matching the given Glob patterns (string or slice). - ExcludeFiles interface{} + ExcludeFiles any } // Used as key to remove duplicates. -- cgit v1.2.3