Files
LaodingBot/internal/toolhost/stdio.go

15 lines
133 B
Go
Raw Permalink Normal View History

package toolhost
import (
"io"
"os"
)
func stdin() io.Reader {
return os.Stdin
}
func stdout() io.Writer {
return os.Stdout
}