mirror of
https://github.com/elyby/chrly.git
synced 2025-01-26 05:23:55 +05:30
18 lines
285 B
Go
18 lines
285 B
Go
package capes
|
|
|
|
import (
|
|
"elyby/minecraft-skinsystem/repositories"
|
|
)
|
|
|
|
type CapesRepositoryCreator interface {
|
|
Create() (repositories.CapesRepository, error)
|
|
}
|
|
|
|
type CapeNotFoundError struct {
|
|
Who string
|
|
}
|
|
|
|
func (e CapeNotFoundError) Error() string {
|
|
return "Cape file not found."
|
|
}
|