2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-05 21:23:23 +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
}