(key string)
| 888 | func GetStringSlice(key string) []string { return v.GetStringSlice(key) } |
| 889 | |
| 890 | func (v *Viper) GetStringSlice(key string) []string { |
| 891 | return cast.ToStringSlice(v.Get(key)) |
| 892 | } |
| 893 | |
| 894 | // GetStringMap returns the value associated with the key as a map of interfaces. |
| 895 | func GetStringMap(key string) map[string]any { return v.GetStringMap(key) } |