photoprism/internal/crop/errors.go

10 lines
88 B
Go
Raw Normal View History

package crop
import (
"errors"
)
var (
ErrNotFound = errors.New("crop not found")
)