mirror of
https://github.com/elyby/chrly.git
synced 2024-11-27 01:01:59 +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)
|
|
}
|