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

8 lines
105 B
Go
Raw Normal View History

2023-10-27 07:01:55 +00:00
package encoding
type encodingError string
func (e encodingError) Error() string {
return string(e)
}