mirror of
https://github.com/elyby/chrly.git
synced 2025-05-31 14:11: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)
|
|
}
|
|
|