mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
10 lines
158 B
Go
10 lines
158 B
Go
package crop
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
// ErrNotFound indicates the requested crop size or option was not found.
|
|
ErrNotFound = errors.New("not found")
|
|
)
|