mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-17 18:06:15 -05:00
14 lines
176 B
Go
14 lines
176 B
Go
// +build mips mipsle mips64 mips64le arm arm64
|
|
|
|
package buf
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func newReaderPlatform(reader io.Reader) Reader {
|
|
return &SingleReader{
|
|
Reader: reader,
|
|
}
|
|
}
|