11 lines
199 B
Go
11 lines
199 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/animenotifier/arn"
|
||
|
)
|
||
|
|
||
|
// AvatarSource describes a source where we can find avatar images for a user.
|
||
|
type AvatarSource interface {
|
||
|
GetAvatar(*arn.User) *Avatar
|
||
|
}
|