1
0
Fork 0
mirror of https://github.com/spf13/viper synced 2025-05-03 02:37:17 +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)
}