diff --git a/internal/config/flags.go b/internal/config/flags.go index be8e3f3..4351413 100644 --- a/internal/config/flags.go +++ b/internal/config/flags.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 The Decred developers +// Copyright (c) 2024-2025 The Decred developers // Use of this source code is governed by an ISC // license that can be found in the LICENSE file. @@ -12,7 +12,7 @@ import ( // via command line options. Only the help option is evaluated, any invalid // options are ignored. The return value indicates whether the help message was // printed or not. -func WriteHelp(cfg interface{}) bool { +func WriteHelp(cfg any) bool { helpOpts := flags.Options(flags.HelpFlag | flags.PrintErrors | flags.IgnoreUnknown) _, err := flags.NewParser(cfg, helpOpts).Parse() return flags.WroteHelp(err)