1 Star 0 Fork 0

water/goweb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
cmd_inst.go 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
leijmdas 提交于 2024-10-13 11:03 . add
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")
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/leijmdas/goweb.git
git@gitee.com:leijmdas/goweb.git
leijmdas
goweb
goweb
v1.0.1-dev-02

搜索帮助