mirror of
https://github.com/go-task/task.git
synced 2025-02-05 13:25:14 +02:00
10 lines
115 B
Go
10 lines
115 B
Go
package output
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
type Output interface {
|
|
WrapWriter(w io.Writer, prefix string) io.WriteCloser
|
|
}
|