(indicator, status string)
| 33 | } |
| 34 | |
| 35 | func (f *ASCIIFormatter) applyStatusIndicator(indicator, status string) string { |
| 36 | if f != nil && f.FormatStatusIndicator != nil { |
| 37 | return f.FormatStatusIndicator(indicator, status) |
| 38 | } |
| 39 | return indicator |
| 40 | } |
| 41 | |
| 42 | func (f *ASCIIFormatter) applyConnector(connector string) string { |
| 43 | if f != nil && f.FormatConnector != nil { |