mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
13 lines
206 B
Go
13 lines
206 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/imdario/mergo"
|
||
|
)
|
||
|
|
||
|
func merge(dst, src interface{}, overwrite bool) error {
|
||
|
if overwrite {
|
||
|
return mergo.MergeWithOverwrite(dst, src)
|
||
|
}
|
||
|
return mergo.Merge(dst, src)
|
||
|
}
|