vendor/github.com/spf13/viper/internal/encoding/error.go
author Mikael Berthe <mikael@lilotux.net>
Tue, 23 Aug 2022 22:39:43 +0200
changeset 260 445e01aede7e
permissions -rw-r--r--
Update vendor directory

package encoding

type encodingError string

func (e encodingError) Error() string {
	return string(e)
}