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.
18 lines
271 B
Go
18 lines
271 B
Go
4 years ago
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
// Vtqe is my own toolbox
|
||
|
|
||
|
var cmdMain = &cobra.Command{
|
||
|
Short: "Victorique Wisdom ToolBox",
|
||
|
Long: "中二的工具箱:未来を照らし出せ!",
|
||
|
Version: "v1.0.0 NG",
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
cmdMain.Execute()
|
||
|
}
|