package share import "errors" var ( ErrNotFound = errors.New("not found") ErrAttributeRequired = errors.New("attribute required") )