Improved avatar background job

This commit is contained in:
2017-06-13 13:23:54 +02:00
parent 4145f86e84
commit bdb8d983d2
8 changed files with 139 additions and 26 deletions

View File

@ -0,0 +1,6 @@
package main
// AvatarWriter represents a system that saves an avatar locally (in database or as a file, e.g.)
type AvatarWriter interface {
SaveAvatar(*Avatar) error
}