mirror of
https://github.com/elyby/chrly.git
synced 2024-11-19 11:43:06 +05:30
9 lines
195 B
Go
9 lines
195 B
Go
|
package repositories
|
||
|
|
||
|
import "elyby/minecraft-skinsystem/model"
|
||
|
|
||
|
type SkinsRepository interface {
|
||
|
FindByUsername(username string) (model.Skin, error)
|
||
|
FindByUserId(id int) (model.Skin, error)
|
||
|
}
|