mirror of
https://github.com/elyby/chrly.git
synced 2025-02-21 09:48:26 +05:30
18 lines
285 B
Go
18 lines
285 B
Go
package skins
|
|
|
|
import (
|
|
"elyby/minecraft-skinsystem/repositories"
|
|
)
|
|
|
|
type SkinsRepositoryCreator interface {
|
|
Create() (repositories.SkinsRepository, error)
|
|
}
|
|
|
|
type SkinNotFoundError struct {
|
|
Who string
|
|
}
|
|
|
|
func (e SkinNotFoundError) Error() string {
|
|
return "Skin data not found."
|
|
}
|