16 lines
223 B
Go
Raw Normal View History

2017-06-13 11:23:54 +00:00
package main
2017-06-13 12:47:17 +00:00
import (
"image"
"github.com/animenotifier/arn"
)
2017-06-13 11:23:54 +00:00
// Avatar represents a single image and the name of the format.
type Avatar struct {
2017-06-13 12:47:17 +00:00
User *arn.User
2017-06-13 11:23:54 +00:00
Image image.Image
Data []byte
Format string
}