thumbnail/imagecrush_nocgo.go

13 lines
169 B
Go

//+build !cgo
package thumbnail
import (
"errors"
"image"
)
func crushFast(img image.Image) ([]byte, error) {
return nil, errors.New("Pngquant not compiled in")
}