mirror of
https://github.com/jpillora/chisel
synced 2026-06-08 15:07:02 +00:00
dca1156401
thanks @testwill
16 lines
156 B
Go
16 lines
156 B
Go
package cio
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
)
|
|
|
|
//Stdio as a ReadWriteCloser
|
|
var Stdio = &struct {
|
|
io.ReadCloser
|
|
io.Writer
|
|
}{
|
|
io.NopCloser(os.Stdin),
|
|
os.Stdout,
|
|
}
|