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.
|
package tools
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var Version string = "0.1.16"
|
|
|
|
var Maincmd = &cobra.Command{
|
|
Use: "",
|
|
Short: "Victorique's Small Smart Toolkit",
|
|
Long: "Victorique's Small Smart Toolkit",
|
|
}
|
|
|
|
func init() {
|
|
cobra.MousetrapHelpText = ""
|
|
Maincmd.Version = Version
|
|
}
|