mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
14 lines
280 B
Go
14 lines
280 B
Go
|
package yqlib
|
||
|
|
||
|
type PropertiesPreferences struct {
|
||
|
KeyValueSeparator string
|
||
|
}
|
||
|
|
||
|
func NewDefaultPropertiesPreferences() PropertiesPreferences {
|
||
|
return PropertiesPreferences{
|
||
|
KeyValueSeparator: " = ",
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var ConfiguredPropertiesPreferences = NewDefaultPropertiesPreferences()
|