mirror of
https://github.com/elyby/chrly.git
synced 2024-12-03 12:10:47 +05:30
12 lines
147 B
Go
12 lines
147 B
Go
|
package model
|
||
|
|
||
|
import "os"
|
||
|
|
||
|
type Cape struct {
|
||
|
File *os.File
|
||
|
}
|
||
|
|
||
|
type CapesRepository interface {
|
||
|
FindByUsername(username string) (Cape, error)
|
||
|
}
|