Better naming of the Marshal functionality.

This commit is contained in:
spf13 2014-07-11 10:41:45 -04:00
parent 1cebee8d97
commit c5a9056e3b

View file

@ -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