From c88138239a1bea185ec437f95812b38589b9cfe4 Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Mon, 27 Jul 2020 10:46:16 +0200 Subject: [PATCH] change store category to extensions instead of runtime --- pkg/command/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/command/store.go b/pkg/command/store.go index 7a5e7b92d..c25d0bc04 100644 --- a/pkg/command/store.go +++ b/pkg/command/store.go @@ -16,7 +16,7 @@ func StoreCommand(cfg *config.Config) *cli.Command { return &cli.Command{ Name: "store", Usage: "Start a go-micro store", - Category: "Runtime", + Category: "Extensions", Flags: flagset.ServerWithConfig(cfg.Store), Action: func(ctx *cli.Context) error { storeCommand := command.Server(configureStore(cfg))