gotosocial/vendor/github.com/dsoprea/go-exif/error.go
2021-08-12 15:51:53 +02:00

10 lines
151 B
Go

package exif
import (
"errors"
)
var (
ErrTagNotFound = errors.New("tag not found")
ErrTagNotStandard = errors.New("tag not a standard tag")
)