1 package pool 2 3 import "time" 4 5 func (cn *Conn) SetCreatedAt(tm time.Time) { 6 cn.createdAt = tm 7 } 8
View as plain text