Improved background jobs

This commit is contained in:
2017-06-13 14:47:17 +02:00
parent bdb8d983d2
commit e07a865d9c
13 changed files with 144 additions and 151 deletions

View File

@ -1,9 +1,14 @@
package main
import "image"
import (
"image"
"github.com/animenotifier/arn"
)
// Avatar represents a single image and the name of the format.
type Avatar struct {
User *arn.User
Image image.Image
Data []byte
Format string