package redisdb
import "context"
// DelKey ...
func (s Server) DelKey(ctx context.Context, key string) {
s.rdb.Del(ctx, key)
}