mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2026-01-02 14:13:18 -06:00
10 lines
151 B
Go
10 lines
151 B
Go
package exif
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrTagNotFound = errors.New("tag not found")
|
|
ErrTagNotStandard = errors.New("tag not a standard tag")
|
|
)
|