mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 10:26:03 +00:00
10 lines
160 B
Go
10 lines
160 B
Go
package thumb
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
// ErrNotCached indicates a requested thumbnail is not present in cache.
|
|
ErrNotCached = errors.New("not cached")
|
|
)
|