summaryrefslogtreecommitdiff
path: root/internal/configuration/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/configuration/types.go')
-rw-r--r--internal/configuration/types.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/configuration/types.go b/internal/configuration/types.go
index 90dbaa63c..5946ea7f2 100644
--- a/internal/configuration/types.go
+++ b/internal/configuration/types.go
@@ -38,11 +38,11 @@ type SecretsSource struct {
type CommandLineSource struct {
koanf *koanf.Koanf
flags *pflag.FlagSet
- callback func(flag *pflag.Flag) (string, interface{})
+ callback func(flag *pflag.Flag) (string, any)
}
// MapSource loads configuration from the command line flags.
type MapSource struct {
- m map[string]interface{}
+ m map[string]any
koanf *koanf.Koanf
}