From 339c63befcd6075e3ae2f1a05ef04a22aa1faaf1 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sun, 23 Nov 2014 23:29:29 +0100 Subject: [PATCH] Add "list maps" command --- cmd/khepri/cmd_list.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/khepri/cmd_list.go b/cmd/khepri/cmd_list.go index a58eee254..f8fe4c132 100644 --- a/cmd/khepri/cmd_list.go +++ b/cmd/khepri/cmd_list.go @@ -26,6 +26,8 @@ func commandList(be backend.Server, key *khepri.Key, args []string) error { each = key.Each case "snapshots": t = backend.Snapshot + case "maps": + t = backend.Map case "keys": t = backend.Key case "locks":