pgcli/internal/core/stream.go

10 lines
95 B
Go

package core
import "io"
type Stream struct {
In io.Reader
Out io.Writer
Err io.Writer
}