You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
298 B

4 years ago
package value
import (
4 years ago
"errors"
4 years ago
)
var _ Append = (*Read)(nil)
4 years ago
var (
ErrAppendRead = errors.New("invalid append data to read value")
ErrAppendEmpty = errors.New("invalid apped data to empty value")
)
4 years ago
type Read struct {
4 years ago
Value
4 years ago
}
func (r *Read) Append(string) error {
4 years ago
return ErrAppendRead
4 years ago
}