1
0
mirror of https://github.com/go-task/task.git synced 2025-06-02 23:27:37 +02:00
task/internal/output/interleaved.go

12 lines
151 B
Go
Raw Normal View History

package output
import (
"io"
)
type Interleaved struct{}
func (Interleaved) WrapWriter(w io.Writer, _ string, _ Templater) io.Writer {
return w
}