Hilbish/util/streams.go

12 lines
109 B
Go
Raw Permalink Normal View History

2024-12-29 05:12:06 +00:00
package util
import (
"io"
)
type Streams struct {
Stdout io.Writer
Stderr io.Writer
Stdin io.Reader
}