mirror of
https://github.com/go-task/task.git
synced 2026-06-22 20:25:50 +00: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
|
|
}
|