5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-02-21 19:26:52 +00:00

8 lines
105 B
Go
Raw Normal View History

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