package main import ( "github.com/spf13/cobra" ) // Vtqe is my own toolbox func init() { cmdMain.AddCommand(tcpingcmd, httpcmd, attachcmd, detachcmd) } const vtqe_version string = "v1.0.0NG RC1" var cmdMain = &cobra.Command{ Short: "Victorique Wisdom ToolBox", Long: "中二的工具箱:未来を照らし出せ!", Version: vtqe_version, } func main() { cmdMain.Execute() }