15 lines
133 B
Go
15 lines
133 B
Go
package toolhost
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
)
|
|
|
|
func stdin() io.Reader {
|
|
return os.Stdin
|
|
}
|
|
|
|
func stdout() io.Writer {
|
|
return os.Stdout
|
|
}
|