mirror of
https://github.com/redis/go-redis.git
synced 2025-09-11 18:10:43 +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
|
|
}
|