5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-01-31 04:34:39 +00:00

8 lines
105 B
Go
Raw Normal View History

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