MCPcopy Create free account
hub / github.com/UiPath/uipathcli / TextOutputWriter

Struct TextOutputWriter

output/text_output_writer.go:21–24  ·  view source on GitHub ↗

The TextOutputWriter formats the CLI output as text meaning fields are separated by tabs and multiple elements by newline. It is used when the --output text parameter is provided. Example: foo1 bar1 foo2 bar2

Source from the content-addressed store, hash-verified

19// foo1 bar1
20// foo2 bar2
21type TextOutputWriter struct {
22 output io.Writer
23 transformer Transformer
24}
25
26func (w TextOutputWriter) sortKeys(value map[string]interface{}) []string {
27 keys := []string{}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected