package interfaces import ( "io" ) type Formatter interface { Format(object *ResourceList) (io.Reader, error) } type TableOutput interface { ColumnNames() []string Columns() []any }