mirror of
https://github.com/mikefarah/yq.git
synced 2026-03-10 15:54:26 +00:00
14 lines
292 B
Go
14 lines
292 B
Go
package yqlib
|
|
|
|
type ShellVariablesPreferences struct {
|
|
KeySeparator string
|
|
}
|
|
|
|
func NewDefaultShellVariablesPreferences() ShellVariablesPreferences {
|
|
return ShellVariablesPreferences{
|
|
KeySeparator: "_",
|
|
}
|
|
}
|
|
|
|
var ConfiguredShellVariablesPreferences = NewDefaultShellVariablesPreferences()
|