mirror of
https://github.com/mikefarah/yq.git
synced 2026-06-27 23:49:58 +00:00
Agent-Logs-Url: https://github.com/mikefarah/yq/sessions/8a11e9a0-10d2-4f2a-ae29-4e9d0bfc266f Co-authored-by: mikefarah <1151925+mikefarah@users.noreply.github.com>
14 lines
252 B
Go
14 lines
252 B
Go
package yqlib
|
|
|
|
type SecurityPreferences struct {
|
|
DisableEnvOps bool
|
|
DisableFileOps bool
|
|
EnableSystemOps bool
|
|
}
|
|
|
|
var ConfiguredSecurityPreferences = SecurityPreferences{
|
|
DisableEnvOps: false,
|
|
DisableFileOps: false,
|
|
EnableSystemOps: false,
|
|
}
|