Copy copies the object associated with srcKey to dstKey. If the source object does not exist, Copy must return an ErrNotFound. If the destination object already exists, it should be overwritten.
(ctx context.Context, dstKey, srcKey string)
| 84 | // |
| 85 | // If the destination object already exists, it should be overwritten. |
| 86 | Copy(ctx context.Context, dstKey, srcKey string) error |
| 87 | |
| 88 | // Delete deletes the object associated with key. If the specified object does |
| 89 | // not exist, Delete must return an ErrNotFound. |
no outgoing calls