aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/mitchellh/copystructure/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mitchellh/copystructure/README.md')
-rw-r--r--vendor/github.com/mitchellh/copystructure/README.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/github.com/mitchellh/copystructure/README.md b/vendor/github.com/mitchellh/copystructure/README.md
new file mode 100644
index 0000000..bcb8c8d
--- /dev/null
+++ b/vendor/github.com/mitchellh/copystructure/README.md
@@ -0,0 +1,21 @@
1# copystructure
2
3copystructure is a Go library for deep copying values in Go.
4
5This allows you to copy Go values that may contain reference values
6such as maps, slices, or pointers, and copy their data as well instead
7of just their references.
8
9## Installation
10
11Standard `go get`:
12
13```
14$ go get github.com/mitchellh/copystructure
15```
16
17## Usage & Example
18
19For usage and examples see the [Godoc](http://godoc.org/github.com/mitchellh/copystructure).
20
21The `Copy` function has examples associated with it there.