From cee6bd6abde4778daf0d999b9a00d95b8d9aadf5 Mon Sep 17 00:00:00 2001 From: Vincent <46603415@qq.com> Date: Thu, 15 Jul 2021 10:21:26 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8Dcreateapp=E6=9C=AA?= =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E5=AF=BC=E8=87=B4=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E5=88=9B=E5=BB=BAapp=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cmd/cobra.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/cobra.go b/cmd/cobra.go index dedb0736..6c69d355 100644 --- a/cmd/cobra.go +++ b/cmd/cobra.go @@ -4,6 +4,7 @@ import ( "errors" "fmt" "github.com/go-admin-team/go-admin-core/sdk/pkg" + "go-admin/cmd/app" "go-admin/common/global" "os" @@ -45,6 +46,7 @@ func init() { rootCmd.AddCommand(migrate.StartCmd) rootCmd.AddCommand(version.StartCmd) rootCmd.AddCommand(config.StartCmd) + rootCmd.AddCommand(app.StartCmd) } //Execute : apply commands