(s Logger, header []string, values [][]string)
| 49 | } |
| 50 | |
| 51 | func PrintTable(s Logger, header []string, values [][]string) { |
| 52 | PrintTableWithOptions(s, header, values, nil) |
| 53 | } |
| 54 | |
| 55 | // PrintTableWithOptions prints a table with header columns and string values |
| 56 | func PrintTableWithOptions(s Logger, header []string, values [][]string, modify func(table *tablewriter.Table)) { |
no test coverage detected