Files
go-task/internal/output/interleaved.go
2023-03-08 22:34:52 -03:00

12 lines
235 B
Go

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) error { return nil }
}