interleaved.go 292 B

12345678910111213
  1. package output
  2. import (
  3. "io"
  4. "github.com/go-task/task/v3/internal/templater"
  5. )
  6. type Interleaved struct{}
  7. func (Interleaved) WrapWriter(stdOut, stdErr io.Writer, _ string, _ *templater.Cache) (io.Writer, io.Writer, CloseFunc) {
  8. return stdOut, stdErr, func(error) error { return nil }
  9. }