You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
574 B
Go
27 lines
574 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// Vtqe is my own toolbox
|
|
|
|
func init() {
|
|
cmdMain.AddCommand(tcpingcmd, httpcmd, attachcmd, detachcmd, b64cmd, ftpcmd, gencmd, hashcmd, imageCmd, mergecmd, netcmd, sftpcmd, splitcmd, tcpcmd, udpcmd, viccmd, curlcmd)
|
|
}
|
|
|
|
const vtqe_version string = "v1.0.0rc1"
|
|
|
|
var cmdMain = &cobra.Command{
|
|
Short: "Victorique's Wisdom ToolBox",
|
|
Long: fmt.Sprintf(`Victorique's Wisdom ToolBox @%v
|
|
这是一个可爱且充满智慧的工具箱@B612.ME`, vtqe_version),
|
|
Version: vtqe_version,
|
|
}
|
|
|
|
func main() {
|
|
cmdMain.Execute()
|
|
}
|