1
0
mirror of https://github.com/go-task/task.git synced 2025-08-10 22:42:19 +02:00

Add "output" option to Taskfile to control how stuff are printed to stdout/stderr

First step for #104
This commit is contained in:
Andrey Nering
2018-04-15 14:35:29 -03:00
parent 8b3c34c308
commit 051ff35878
4 changed files with 76 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
package output
import (
"io"
)
type Output interface {
WrapWriter(io.Writer) io.WriteCloser
}