mirror of
https://github.com/redis/go-redis.git
synced 2025-09-14 07:09:20 +03:00
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
|
|
}
|