All checks were successful
continuous-integration/drone/push Build is passing
See #478
12 lines
112 B
Go
12 lines
112 B
Go
// +build !windows
|
|
|
|
package localereader
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func newReader(r io.Reader) io.Reader {
|
|
return r
|
|
}
|