5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 17:12:31 +00:00
matterbridge/vendor/github.com/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)
}