package pool import ( "net" "time" ) func (cn *Conn) SetCreatedAt(tm time.Time) { cn.createdAt = tm } func (cn *Conn) NetConn() net.Conn { return cn.netConn }