3 Star 6 Fork 0

兆瞰数科/pkgs

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
create.go 591 Bytes
一键复制 编辑 原始数据 按行查看 历史
workits 提交于 2023-10-13 18:54 +08:00 . 整合wk命令行工具
package cmd
import (
"strings"
"gitee.com/workits/pkgs/toolx"
"github.com/spf13/cobra"
)
var createComp string
var createCmd = &cobra.Command{
Use: "create",
Short: "创建一个workits项目",
Long: "创建一个workits项目",
Run: func(cmd *cobra.Command, args []string) {
if len(args) != 1 || strings.Contains(args[0], " ") || !toolx.IsFolderName(args[0]) {
panic("🙅项目名称错误")
}
toolx.NewProject(args[0], createComp)
},
}
func init() {
rootCmd.AddCommand(createCmd)
createCmd.Flags().StringVarP(&createComp, "component", "c", "http", "组件")
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/workits/pkgs.git
git@gitee.com:workits/pkgs.git
workits
pkgs
pkgs
v0.1.1

搜索帮助