mirror of
https://github.com/spf13/viper
synced 2024-11-05 20:57:01 +00:00
Better naming of the Marshal functionality.
This commit is contained in:
parent
1cebee8d97
commit
c5a9056e3b
1 changed files with 4 additions and 4 deletions
8
viper.go
8
viper.go
|
@ -96,13 +96,13 @@ func GetStringMapString(key string) map[string]string {
|
|||
return cast.ToStringMapString(Get(key))
|
||||
}
|
||||
|
||||
// takes a map and uses reflection to convert it into the given Go native structure.
|
||||
// rawVal must be a pointer to a struct.
|
||||
func GetIntoStruct(key string, rawVal interface{}) error {
|
||||
// Takes a single key and marshals it into a Struct
|
||||
func MarshalKey(key string, rawVal interface{}) error {
|
||||
return mapstructure.Decode(Get(key), rawVal)
|
||||
}
|
||||
|
||||
func GetAllIntoStruct(rawVal interface{}) (err error) {
|
||||
// Marshals the config into a Struct
|
||||
func Marshal(rawVal interface{}) (err error) {
|
||||
err = mapstructure.Decode(defaults, rawVal)
|
||||
if err != nil {
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue