代码拉取完成,页面将自动刷新
package templatemethod
import (
"fmt"
"gitee.com/leijmdas/gobase/goconfig/common/base/basedto"
"gitee.com/leijmdas/gobase/goconfig/common/base/fileutils"
"gitee.com/leijmdas/goweb/cmd/goweb/internal/menu/instcmd/icmdface"
"gitee.com/leijmdas/goweb/cmd/goweb/internal/menu/instcmd/inicmd"
"github.com/gogf/gf/v2/os/gfile"
"github.com/spf13/cobra"
)
type CmdInst struct {
basedto.BaseEntitySingle
Cmdtype string
IfRmWeb bool
}
func NewCmdInst() *CmdInst {
return &CmdInst{}
}
func (c CmdInst) Setup(cmd *cobra.Command, args []string) {
var file = fileutils.FindRootDir() + "/config/app-env.yml"
if !fileutils.TryFileExist(file) {
inicmd.InstallConfigServer(cmd, args)
}
}
func (c CmdInst) Do(cmd *cobra.Command, args []string) {
fmt.Println("do...")
}
func (c CmdInst) TearDown() {
if c.IfRmWeb {
c.RemoveWebSample()
}
}
func (c CmdInst) Inst(cmd *cobra.Command, args []string) {
c.Setup(cmd, args)
if icmdinst, ok := c.Proxy().Some().(icmdface.IcmdInst); ok {
icmdinst.Do(cmd, args)
} else {
c.Do(cmd, args)
}
c.TearDown()
}
func (c CmdInst) RemoveWebSample() {
gfile.Remove(fileutils.FindRootDir() + "/websample")
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。