niki/vendor/github.com/mitchellh/copystructure
mehdi 9fc2b59014 fix(docker): change port redis 2024-04-26 23:00:35 +03:30
..
LICENSE feat(niki): dockerize app 2024-02-18 14:12:21 +03:30
README.md feat(niki): dockerize app 2024-02-18 14:12:21 +03:30
copier_time.go feat(niki): dockerize app 2024-02-18 14:12:21 +03:30
copystructure.go fix(docker): change port redis 2024-04-26 23:00:35 +03:30

README.md

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.

The Copy function has examples associated with it there.