10 lines
101 B
Go
10 lines
101 B
Go
|
package thumb
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
ErrThumbNotCached = errors.New("thumbnail not cached")
|
||
|
)
|