reprint
reprint copied to clipboard
Golang deep copying, THE RIGHT WAY :tm:
Results
1
reprint issues
Sort by
recently updated
recently updated
newest added
Hi just FYI, seems it doesn't deep clone nested maps with interface{} types inside: ``` package main import ( "fmt" "github.com/jinzhu/copier" "github.com/qdm12/reprint" ) func main() { var fields map[string]interface{} msg...