2017-10-03 04:59:39 +02:00

7 lines
208 B
Go

package utils
// EmptyImage returns the smallest possible 1x1 pixel image encoded in Base64.
func EmptyImage() string {
return "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
}