2017-10-03 02:59:39 +00:00
|
|
|
package utils
|
|
|
|
|
|
|
|
// EmptyImage returns the smallest possible 1x1 pixel image encoded in Base64.
|
|
|
|
func EmptyImage() string {
|
2017-11-02 21:01:11 +00:00
|
|
|
return ""
|
|
|
|
// return "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
|
2017-10-03 02:59:39 +00:00
|
|
|
}
|