mirror of https://github.com/go-redis/redis.git
8 lines
95 B
Go
8 lines
95 B
Go
|
package pool
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
func (cn *Conn) SetCreatedAt(tm time.Time) {
|
||
|
cn.createdAt = tm
|
||
|
}
|