1
0
mirror of https://github.com/go-task/task.git synced 2025-02-11 13:53:03 +02:00
task/internal/output/interleaved.go

12 lines
230 B
Go
Raw Normal View History

package output
import (
"io"
)
type Interleaved struct{}
func (Interleaved) WrapWriter(stdOut, stdErr io.Writer, _ string, _ Templater) (io.Writer, io.Writer, CloseFunc) {
return stdOut, stdErr, func() error { return nil }
}