mirror of
https://github.com/elyby/chrly.git
synced 2024-12-24 22:19:51 +05:30
13 lines
189 B
Go
13 lines
189 B
Go
|
package redis
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
type SkinNotFound struct {
|
||
|
Who string
|
||
|
}
|
||
|
|
||
|
func (e SkinNotFound) Error() string {
|
||
|
return fmt.Sprintf("Skin data not found. Required username \"%v\"", e.Who)
|
||
|
}
|
||
|
|