11 lines
199 B
Go
Raw Normal View History

2017-06-13 11:23:54 +00:00
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
}