1
0
Fork 0
mirror of https://github.com/spf13/viper synced 2025-04-29 08:47:18 +00:00
spf13--viper/internal/encoding/error.go

8 lines
105 B
Go
Raw Normal View History

package encoding
type encodingError string
func (e encodingError) Error() string {
return string(e)
}