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

7 lines
105 B
Go

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