WriteUncheckedObject writes an object to the remote not checking for duplicates
(ctx context.Context, remote, content string, modTime time.Time)
| 299 | |
| 300 | // WriteUncheckedObject writes an object to the remote not checking for duplicates |
| 301 | func (r *Run) WriteUncheckedObject(ctx context.Context, remote, content string, modTime time.Time) Item { |
| 302 | return r.WriteObjectTo(ctx, r.Fremote, remote, content, modTime, true) |
| 303 | } |
| 304 | |
| 305 | // WriteBoth calls WriteObject and WriteFile with the same arguments |
| 306 | func (r *Run) WriteBoth(ctx context.Context, remote, content string, modTime time.Time) Item { |