1
0
mirror of https://github.com/go-task/task.git synced 2025-02-05 13:25:14 +02:00
task/internal/output/output.go
2018-04-22 15:41:53 -03:00

10 lines
115 B
Go

package output
import (
"io"
)
type Output interface {
WrapWriter(w io.Writer, prefix string) io.WriteCloser
}