From ddc0974d2c94324a5e28abb3f39c3d909ebffdcc Mon Sep 17 00:00:00 2001 From: Tobie Morgan Hitchcock Date: Fri, 26 Feb 2016 18:53:35 +0000 Subject: [PATCH] Add description to main cli command --- cli/cli.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cli/cli.go b/cli/cli.go index 98de737b..61c904ff 100644 --- a/cli/cli.go +++ b/cli/cli.go @@ -33,7 +33,8 @@ import ( ) var mainCmd = &cobra.Command{ - Use: "surreal", + Use: "surreal", + Short: "SurrealDB command-line interface and server", PersistentPreRunE: func(cmd *cobra.Command, args []string) error { return stores.Setup(Config.Context) },