aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authoralex <[email protected]>2026-07-08 19:25:30 +0200
committeralex <[email protected]>2026-07-08 19:25:30 +0200
commitb523e77159b89cdb22a8e6e7f9d0046cd4269443 (patch)
tree11c12d8d9d4e1409840a8a8e9d71a1b147000623 /main.go
parent23eea730585ece03deadd28f46f3c5e46f155048 (diff)
downloadredis-clone-b523e77159b89cdb22a8e6e7f9d0046cd4269443.tar.xz
redis-clone-b523e77159b89cdb22a8e6e7f9d0046cd4269443.zip
added LREM command
Diffstat (limited to 'main.go')
-rw-r--r--main.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.go b/main.go
index 4daa5cd..8edf10f 100644
--- a/main.go
+++ b/main.go
@@ -38,6 +38,7 @@ var commandRegistry = map[string]handlerFunc{
"TYPE": handleType,
"DBSIZE": handleDbsize,
"KEYS": handleKeys,
+ "LREM": handleLrem,
}
func main() {