11 lines
167 B
Go
Raw Normal View History

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