Skip to content

Commit

Permalink
feature: support del protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
funky-eyes committed Apr 6, 2024
1 parent bb4031c commit 1521679
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/redis2asp/protocol/request/DelRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@

import org.redis2asp.protocol.RedisRequest;
import org.redis2asp.protocol.RedisResponse;
import org.redis2asp.protocol.response.BulkResponse;
import org.redis2asp.protocol.response.IntegerResponse;

public class DelRequest implements RedisRequest<byte[]> {

String key;

BulkResponse response = new BulkResponse();
IntegerResponse response = new IntegerResponse();

public DelRequest(String key) {
this.key = key;
Expand Down

0 comments on commit 1521679

Please sign in to comment.