mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-21 07:00:11 -04:00
14 lines
516 B
Go
14 lines
516 B
Go
package constants
|
|
|
|
// viper config keys
|
|
const (
|
|
ConfigKeyInteractive = "interactive"
|
|
ConfigKeyActiveCommand = "cmd"
|
|
ConfigKeyActiveCommandArgs = "cmd_args"
|
|
ConfigInteractiveVariables = "interactive_var"
|
|
ConfigKeyIsTerminalTTY = "is_terminal"
|
|
ConfigKeyServerSearchPath = "server-search-path"
|
|
ConfigKeyServerSearchPathPrefix = "server-search-path-prefix"
|
|
ConfigKeyBypassHomeDirModfileWarning = "bypass-home-dir-modfile-warning"
|
|
)
|