1
0
Fork 0
mirror of https://github.com/spf13/viper synced 2025-01-09 04:06:37 +00:00
spf13--viper/internal/encoding/error.go

8 lines
105 B
Go
Raw Permalink Normal View History

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