2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-06-08 05:22:02 +00:00
Hilbish/util/streams.go

12 lines
109 B
Go

package util
import (
"io"
)
type Streams struct {
Stdout io.Writer
Stderr io.Writer
Stdin io.Reader
}