photoprism/internal/crop/errors.go

10 lines
83 B
Go
Raw Normal View History

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