8 lines
116 B
Go
8 lines
116 B
Go
|
package redisdb
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
// DelKey ...
|
||
|
func DelKey(ctx context.Context, key string) {
|
||
|
rdb.Del(ctx, key)
|
||
|
}
|