goblin/vendor/github.com/spf13/viper/internal/encoding/error.go

8 lines
105 B
Go
Raw Normal View History

2023-09-07 20:09:20 +00:00
package encoding
type encodingError string
func (e encodingError) Error() string {
return string(e)
}