mirror of
https://github.com/elyby/chrly.git
synced 2024-11-18 03:03:01 +05:30
12 lines
187 B
Go
12 lines
187 B
Go
package data
|
|
|
|
import "fmt"
|
|
|
|
type DataNotFound struct {
|
|
Who string
|
|
}
|
|
|
|
func (e DataNotFound) Error() string {
|
|
return fmt.Sprintf("Skin data not found. Required username \"%v\"", e.Who)
|
|
}
|