AddRow adds a new row to the table, which is filled with data.
(data interface{})
| 59 | |
| 60 | // AddRow adds a new row to the table, which is filled with data. |
| 61 | func (t *Table) AddRow(data interface{}) { |
| 62 | t.data = append(t.data, data) |
| 63 | } |
| 64 | |
| 65 | // AddFooter prints line after the table |
| 66 | func (t *Table) AddFooter(line string) { |
no outgoing calls