aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authoralex <[email protected]>2026-07-06 22:53:50 +0200
committeralex <[email protected]>2026-07-06 22:53:50 +0200
commit6a4a4387c1fbcf2e40c64eecdba8148d557f9f0f (patch)
tree122bcc37a5619459d1ecad69828510efa4be0318 /main.go
parent291a6c9044723fcbcce18a3cd12509d5fdac4702 (diff)
downloadredis-clone-6a4a4387c1fbcf2e40c64eecdba8148d557f9f0f.tar.xz
redis-clone-6a4a4387c1fbcf2e40c64eecdba8148d557f9f0f.zip
added HKEYS and HVALUES
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.go b/main.go
index a20db6a..8a73770 100644
--- a/main.go
+++ b/main.go
@@ -32,6 +32,8 @@ var commandRegistry = map[string]handlerFunc{
"HSET": handleHset,
"HGET": handleHget,
"HGETALL": handleHgetall,
+ "HKEYS": handleHkeys,
+ "HVALUES": handleHvalues,
}
func main() {