mirror of https://github.com/go-redis/redis.git
10 lines
183 B
Go
10 lines
183 B
Go
|
//go:build !linux && !darwin && !dragonfly && !freebsd && !netbsd && !openbsd && !solaris && !illumos
|
||
|
|
||
|
package pool
|
||
|
|
||
|
import "net"
|
||
|
|
||
|
func connCheck(conn net.Conn) error {
|
||
|
return nil
|
||
|
}
|