redis/internal/pool/export_test.go

15 lines
166 B
Go
Raw Normal View History

2019-03-25 14:02:31 +03:00
package pool
import (
"net"
"time"
)
2019-03-25 14:02:31 +03:00
func (cn *Conn) SetCreatedAt(tm time.Time) {
cn.createdAt = tm
}
func (cn *Conn) NetConn() net.Conn {
return cn.netConn
2022-06-04 14:28:10 +03:00
}