8 lines
145 B
Go
8 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()
|
||
|
}
|