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