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