mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
10 lines
231 B
Go
10 lines
231 B
Go
package presenter
|
|
|
|
import "io"
|
|
|
|
// Presenter defines the expected behavior for an object responsible for displaying arbitrary input and processed data
|
|
// to a given io.Writer.
|
|
type Presenter interface {
|
|
Present(io.Writer) error
|
|
}
|