1
0
mirror of https://github.com/redis/go-redis.git synced 2025-09-14 07:09:20 +03:00
Files
go-redis/internal/pool/conn_check_dummy.go
ofekshenawa 0b95fd7fa5 Init
2024-06-20 02:30:37 +03:00

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
}