mirror of https://github.com/Hilbis/Hilbish
12 lines
109 B
Go
12 lines
109 B
Go
|
package util
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
)
|
||
|
|
||
|
type Streams struct {
|
||
|
Stdout io.Writer
|
||
|
Stderr io.Writer
|
||
|
Stdin io.Reader
|
||
|
}
|