Searched defs:customStdio (Results 1 – 1 of 1) sorted by relevance
215 type customStdio struct { struct216 stdin io.Reader217 stdout io.Writer218 stderr io.Writer225 func (c customStdio) Stdin() io.Reader { return c.stdin }226 func (c customStdio) Stdout() io.Writer { return c.stdout }227 func (c customStdio) Stderr() io.Writer { return c.stderr }