b67b37dc59
Drop zip/JSON from the root API. dump remains an adapter for the Android app format; inventory and an AMS wand both call Parse(uid, image).
12 lines
251 B
Go
12 lines
251 B
Go
package bambunfc
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrImageSize = errors.New("image size")
|
|
ErrIncomplete = errors.New("incomplete tag")
|
|
ErrNotBambu = errors.New("not bambu")
|
|
ErrUID = errors.New("uid")
|
|
ErrConflict = errors.New("tag conflict")
|
|
)
|