mirror of
https://github.com/elyby/chrly.git
synced 2024-12-23 21:50:03 +05:30
10 lines
139 B
Go
10 lines
139 B
Go
package redis
|
|
|
|
type SkinNotFoundError struct {
|
|
Who string
|
|
}
|
|
|
|
func (e SkinNotFoundError) Error() string {
|
|
return "Skin data not found."
|
|
}
|