photoprism/internal/crop/errors.go

10 lines
83 B
Go
Raw Normal View History

package crop
import (
"errors"
)
var (
2021-09-05 15:10:52 +00:00
ErrNotFound = errors.New("not found")
)