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

First step implementing "prefixed" output option

Ref #104
This commit is contained in:
Andrey Nering
2018-04-22 15:41:53 -03:00
parent 051ff35878
commit a407b0a8eb
7 changed files with 77 additions and 5 deletions

View File

@@ -5,5 +5,5 @@ import (
)
type Output interface {
WrapWriter(io.Writer) io.WriteCloser
WrapWriter(w io.Writer, prefix string) io.WriteCloser
}