sing/common/upstream.go
2022-02-04 00:11:43 +08:00

13 lines
155 B
Go

package common
import (
"io"
)
type ReaderWithUpstream interface {
Upstream() io.Reader
}
type WriterWithUpstream interface {
Upstream() io.Writer
}