mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
10 lines
88 B
Go
10 lines
88 B
Go
package crop
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrNotFound = errors.New("crop not found")
|
|
)
|