Searched refs:customStdio (Results 1 – 2 of 2) sorted by relevance
41 type customStdio struct { struct48 return customStdio{stdin, stdout, stderr}51 func (c customStdio) Stdin() io.Reader { return c.stdin } argument52 func (c customStdio) Stdout() io.Writer { return c.stdout } argument53 func (c customStdio) Stderr() io.Writer { return c.stderr } argument55 var _ StdioInterface = customStdio{}
84 stdio: customStdio,92 stdio: customStdio,429 func customStdio() terminal.StdioInterface { func