| 11 | ) |
| 12 | |
| 13 | type TablePrinter interface { |
| 14 | IsTTY() bool |
| 15 | AddField(string, func(int, string) string, func(string) string) |
| 16 | EndRow() |
| 17 | Render() error |
| 18 | } |
| 19 | |
| 20 | type TablePrinterOptions struct { |
| 21 | IsTTY bool |
no outgoing calls
no test coverage detected