mirror of
https://github.com/mikefarah/yq.git
synced 2026-03-10 15:54:26 +00:00
12 lines
201 B
Go
12 lines
201 B
Go
package yqlib
|
|
|
|
type SecurityPreferences struct {
|
|
DisableEnvOps bool
|
|
DisableFileOps bool
|
|
}
|
|
|
|
var ConfiguredSecurityPreferences = SecurityPreferences{
|
|
DisableEnvOps: false,
|
|
DisableFileOps: false,
|
|
}
|