mirror of
https://github.com/42wim/matterbridge.git
synced 2025-01-09 12:02:35 +01:00
8 lines
105 B
Go
8 lines
105 B
Go
|
package encoding
|
||
|
|
||
|
type encodingError string
|
||
|
|
||
|
func (e encodingError) Error() string {
|
||
|
return string(e)
|
||
|
}
|