(workspaceRoot string)
| 916 | } |
| 917 | |
| 918 | func scopeForWorkspace(workspaceRoot string) string { |
| 919 | if strings.TrimSpace(workspaceRoot) == "" { |
| 920 | return string(aghconfig.WriteScopeGlobal) |
| 921 | } |
| 922 | return string(aghconfig.WriteScopeWorkspace) |
| 923 | } |
| 924 | |
| 925 | func redactedConfigMap(cfg *aghconfig.Config) map[string]any { |
| 926 | node, ok := configNodeFromValue(reflect.ValueOf(cfg), "") |
no outgoing calls
no test coverage detected