diff options
Diffstat (limited to 'modules/config.go')
-rw-r--r-- | modules/config.go | 6 |
1 files changed, 3 insertions, 3 deletions
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. |