mirror of
https://github.com/spf13/viper.git
synced 2024-04-21 12:31:38 +00:00
Add global UnmarshalExact method
There is no helper method for UnmarshalExact which calls the corresponding method on the global viper instance.
This commit is contained in:
committed by
Márk Sági-Kazár
parent
4ad4c8df70
commit
bcb420b705
@@ -949,6 +949,7 @@ func decode(input interface{}, config *mapstructure.DecoderConfig) error {
|
||||
|
||||
// UnmarshalExact unmarshals the config into a Struct, erroring if a field is nonexistent
|
||||
// in the destination struct.
|
||||
func UnmarshalExact(rawVal interface{}) error { return v.UnmarshalExact(rawVal) }
|
||||
func (v *Viper) UnmarshalExact(rawVal interface{}) error {
|
||||
config := defaultDecoderConfig(rawVal)
|
||||
config.ErrorUnused = true
|
||||
|
||||
Reference in New Issue
Block a user