1
0
Fork 0
golang-github-twin-deepmerge/config.go
Daniel Baumann 0759e85aad
Adding upstream version 0.2.2.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-16 22:24:59 +02:00

10 lines
341 B
Go

package deepmerge
type Config struct {
// PreventMultipleDefinitionsOfKeysWithPrimitiveValue causes the return of an error if dst and src define
// the same key and if said key has a value with a primitive type
// This does not apply to slices or maps.
//
// Defaults to true
PreventMultipleDefinitionsOfKeysWithPrimitiveValue bool
}