Searched defs:customStdio (Results 1 – 2 of 2) sorted by relevance
41 type customStdio struct { struct42 stdin io.Reader43 stdout io.Writer44 stderr io.Writer51 func (c customStdio) Stdin() io.Reader { return c.stdin }52 func (c customStdio) Stdout() io.Writer { return c.stdout }53 func (c customStdio) Stderr() io.Writer { return c.stderr }
429 func customStdio() terminal.StdioInterface { func