chrly/db/skins/base.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."
}