11 lines
167 B
Go
Raw Normal View History

2017-06-13 11:23:54 +00:00
package main
import "image"
// Avatar represents a single image and the name of the format.
type Avatar struct {
Image image.Image
Data []byte
Format string
}