mirror of
https://gitee.com/mirrors_adrian-thurston/yq.git
synced 2026-01-15 07:53:35 +08: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)
|
|
}
|