forked from mirror/viper
typo: slice type needed
This commit is contained in:
parent
0a12778a8c
commit
cc1c9a82a5
2
viper.go
2
viper.go
|
@ -466,7 +466,7 @@ func (v *Viper) GetStringMapString(key string) map[string]string {
|
|||
}
|
||||
|
||||
// Returns the value associated with the key as a map to a slice of strings
|
||||
func GetStringMapStringSlice(key string) map[string]string { return v.GetStringMapStringSlice(key) }
|
||||
func GetStringMapStringSlice(key string) map[string][]string { return v.GetStringMapStringSlice(key) }
|
||||
func (v *Viper) GetStringMapStringSlice(key string) map[string]string {
|
||||
return cast.ToStringMapStringSlice(v.Get(key))
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue