mirror of
https://github.com/photoprism/photoprism.git
synced 2026-07-22 01:31:21 +00:00
Can be enabled by setting PHOTOPRISM_RESAMPLE_UNCACHED to true Signed-off-by: Michael Mayer <michael@liquidbytes.net>
9 lines
101 B
Go
9 lines
101 B
Go
package thumb
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrThumbNotCached = errors.New("thumbnail not cached")
|
|
)
|