mirror of
https://github.com/NotAShelf/catApi.git
synced 2025-10-05 08:22:09 +00:00
7 lines
105 B
Go
7 lines
105 B
Go
package encoding
|
|
|
|
type encodingError string
|
|
|
|
func (e encodingError) Error() string {
|
|
return string(e)
|
|
}
|