MCPcopy Create free account
hub / github.com/celer-pkg/celer / outputCapture

Struct outputCapture

pkgs/cmd/exec.go:209–211  ·  view source on GitHub ↗

outputCapture this is a output that keeps live terminal output while capturing combined output.

Source from the content-addressed store, hash-verified

207// outputCapture this is a output that keeps live
208// terminal output while capturing combined output.
209type outputCapture struct {
210 output io.Writer
211}
212
213func (t outputCapture) Write(p []byte) (int, error) {
214 return t.output.Write(p)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected