package logging import ( "io" ) type TaskOutputSink interface { StdOut() io.Writer StdErr() io.Writer Close() error }