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