package utils import "time" type RedisClient interface { SetNX(key string, val interface{}, timeout time.Duration) bool }