10 lines
275 B
Go
10 lines
275 B
Go
package copier
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrInvalidCopyDestination = errors.New("copy destination must be non-nil and addressable")
|
|
ErrInvalidCopyFrom = errors.New("copy from must be non-nil and addressable")
|
|
ErrNotSupported = errors.New("not supported")
|
|
)
|