From 43ad042557cc988b0ec4d9a87dfcb35d5c5c23b5 Mon Sep 17 00:00:00 2001 From: Silas Davis <silas@erisindustries.com> Date: Tue, 27 Sep 2016 19:38:02 +0100 Subject: [PATCH] add client commands --- docs/generator.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/generator.go b/docs/generator.go index 901256d4..09acab42 100644 --- a/docs/generator.go +++ b/docs/generator.go @@ -11,6 +11,7 @@ import ( "github.com/eris-ltd/eris-db/version" "github.com/spf13/cobra" + clientCommands "github.com/eris-ltd/eris-db/client/cmd" ) // Repository maintainers should customize the next two lines. @@ -83,6 +84,11 @@ func main() { commands.AddCommands() commands.AddGlobalFlags() + erisClientCommand := clientCommands.ErisClientCmd + clientCommands.InitErisClientInit() + clientCommands.AddClientCommands() + clientCommands.AddGlobalFlags() + // Make the proper directory. var err error if _, err = os.Stat(RenderDir); os.IsNotExist(err) { @@ -112,4 +118,8 @@ func main() { if err = RenderFiles(erisDbCommand, tmpl); err != nil { panic(err) } + + if err = RenderFiles(erisClientCommand, tmpl); err != nil { + panic(err) + } } -- GitLab