コード例 #1
0
ファイル: viper.go プロジェクト: DLag/viper
func (v *Viper) GetStringMapStringSlice(key string) map[string][]string {
	return cast.ToStringMapStringSlice(v.Get(key))
}
コード例 #2
0
ファイル: config.go プロジェクト: mefellows/parity
// Returns the value associated with the key as a map to a slice of strings.
func (c RawConfig) GetStringMapStringSlice(key string) map[string][]string {
	return cast.ToStringMapStringSlice(c.Get(key))
}