mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
13 lines
155 B
Go
13 lines
155 B
Go
package common
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
type ReaderWithUpstream interface {
|
|
Upstream() io.Reader
|
|
}
|
|
|
|
type WriterWithUpstream interface {
|
|
Upstream() io.Writer
|
|
}
|