TextFormat is a formatter that just outputs unstructured text. It uses fmt.Sprintf under the hood.
()
| 194 | // TextFormat is a formatter that just outputs unstructured text. |
| 195 | // It uses fmt.Sprintf under the hood. |
| 196 | func TextFormat() OutputFormat { |
| 197 | return textFormat{} |
| 198 | } |
| 199 | |
| 200 | func (textFormat) ID() string { |
| 201 | return "text" |
no outgoing calls