mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 12:27:37 +03:00
23 lines
337 B
Go
23 lines
337 B
Go
package common
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
type ReaderWithUpstream interface {
|
|
Upstream() io.Reader
|
|
Replaceable() bool
|
|
}
|
|
|
|
type UpstreamReaderSetter interface {
|
|
SetUpstream(reader io.Reader)
|
|
}
|
|
|
|
type WriterWithUpstream interface {
|
|
Upstream() io.Writer
|
|
Replaceable() bool
|
|
}
|
|
|
|
type UpstreamWriterSetter interface {
|
|
SetWriter(writer io.Writer)
|
|
}
|