aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authoralex <[email protected]>2026-07-07 19:54:35 +0200
committeralex <[email protected]>2026-07-07 19:54:35 +0200
commit6c2bdac928beb943a4b0d11d840bf026ec0b7d66 (patch)
treea3324e5f8e3358e33b6f18176638aae28e29884f /main.go
parent317dd52764ff650602d77f919bcd02270687b3a7 (diff)
downloadredis-clone-6c2bdac928beb943a4b0d11d840bf026ec0b7d66.tar.xz
redis-clone-6c2bdac928beb943a4b0d11d840bf026ec0b7d66.zip
added KEYS 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 a2adbf7..4daa5cd 100644
--- a/main.go
+++ b/main.go
@@ -37,6 +37,7 @@ var commandRegistry = map[string]handlerFunc{
"HVALUES": handleHvalues,
"TYPE": handleType,
"DBSIZE": handleDbsize,
+ "KEYS": handleKeys,
}
func main() {