Apply go fix -any ./...

This commit is contained in:
Michael Eischer
2026-07-22 22:25:18 +02:00
parent d4088aa09b
commit 32e9869cc8
63 changed files with 197 additions and 197 deletions
+2 -2
View File
@@ -13,7 +13,7 @@ import (
type Table struct {
columns []string
templates []*template.Template
data []interface{}
data []any
footer []string
CellSeparator string
@@ -58,7 +58,7 @@ func (t *Table) AddColumn(header, format string) {
}
// AddRow adds a new row to the table, which is filled with data.
func (t *Table) AddRow(data interface{}) {
func (t *Table) AddRow(data any) {
t.data = append(t.data, data)
}