7 lines
145 B
Go
7 lines
145 B
Go
package db
|
|
|
|
import "time"
|
|
|
|
func Set(key string, value interface{}, time time.Duration) error {
|
|
return Client.Set(ctx, key, value, time).Err()
|
|
}
|