mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-02-22 06:27:57 +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)
|
||
|
}
|