7 lines
171 B
Go
Raw Normal View History

2017-06-13 11:23:54 +00:00
package main
2017-06-13 12:47:17 +00:00
// AvatarOutput represents a system that saves an avatar locally (in database or as a file, e.g.)
type AvatarOutput interface {
2017-06-13 11:23:54 +00:00
SaveAvatar(*Avatar) error
}