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.
Victorique/vtqe/main.go

27 lines
574 B
Go

4 years ago
package main
import (
4 years ago
"fmt"
4 years ago
"github.com/spf13/cobra"
)
// Vtqe is my own toolbox
4 years ago
func init() {
4 years ago
cmdMain.AddCommand(tcpingcmd, httpcmd, attachcmd, detachcmd, b64cmd, ftpcmd, gencmd, hashcmd, imageCmd, mergecmd, netcmd, sftpcmd, splitcmd, tcpcmd, udpcmd, viccmd, curlcmd)
4 years ago
}
4 years ago
const vtqe_version string = "v1.0.0rc1"
4 years ago
4 years ago
var cmdMain = &cobra.Command{
4 years ago
Short: "Victorique's Wisdom ToolBox",
Long: fmt.Sprintf(`Victorique's Wisdom ToolBox @%v
@B612.ME`, vtqe_version),
4 years ago
Version: vtqe_version,
4 years ago
}
func main() {
cmdMain.Execute()
}