(src, dst string, opts putOptions)
| 723 | } |
| 724 | |
| 725 | func putRecursive(src, dst string, opts putOptions) error { |
| 726 | _, _, err := putRecursiveInternal(src, dst, opts, false) |
| 727 | return err |
| 728 | } |
| 729 | |
| 730 | func putRecursiveWithResults(src, dst string, opts putOptions) ([]putResult, []jsonWarning, error) { |
| 731 | return putRecursiveInternal(src, dst, opts, true) |