13 lines
183 B
Go
13 lines
183 B
Go
|
// +build disableimagecrush
|
||
|
|
||
|
package thumbnail
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"image"
|
||
|
)
|
||
|
|
||
|
func crushFast(img image.Image) ([]byte, error) {
|
||
|
return nil, errors.New("Pngquant not compiled in")
|
||
|
}
|