An open API service indexing awesome lists of open source software.

https://github.com/dutchcoders/merger

Golang merge objects
https://github.com/dutchcoders/merger

Last synced: 5 months ago
JSON representation

Golang merge objects

Awesome Lists containing this project

README

          

# Merger

Merge source object into destination. This is especially useful when converting from for example database models to json format.

```
if err := merger.Merge(&dest, src); err != nil {
panic(err)
}
```

## Todo's

* implement Merger interface, for custom merging strategies
* improve error handling
* add error strategy (continue, fail)

## Contributions

Contributions are welcome.

## Creators

**Remco Verhoef**
-
-

## Copyright and license

Code and documentation copyright 2011-2014 Remco Verhoef.

Code released under [the MIT license](LICENSE).