mirror of
https://github.com/redis/go-redis.git
synced 2025-04-17 20:17:02 +03:00
11 lines
263 B
Go
11 lines
263 B
Go
//go:build !linux && !darwin && !dragonfly && !freebsd && !netbsd && !openbsd && !solaris && !illumos
|
|
// +build !linux,!darwin,!dragonfly,!freebsd,!netbsd,!openbsd,!solaris,!illumos
|
|
|
|
package pool
|
|
|
|
import "net"
|
|
|
|
func connCheck(conn net.Conn) error {
|
|
return nil
|
|
}
|