1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-04 00:14:49 +00:00

go mod and vendor changes

This commit is contained in:
rajashree
2019-11-13 14:46:03 -08:00
committed by Alena Prokharchyk
parent 9c1c0ea999
commit 091fa14a5d
200 changed files with 12739 additions and 20 deletions

21
vendor/github.com/mitchellh/copystructure/README.md generated vendored Normal file
View File

@@ -0,0 +1,21 @@
# copystructure
copystructure is a Go library for deep copying values in Go.
This allows you to copy Go values that may contain reference values
such as maps, slices, or pointers, and copy their data as well instead
of just their references.
## Installation
Standard `go get`:
```
$ go get github.com/mitchellh/copystructure
```
## Usage & Example
For usage and examples see the [Godoc](http://godoc.org/github.com/mitchellh/copystructure).
The `Copy` function has examples associated with it there.