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