mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-02-01 22:38:13 -05:00
18 lines
211 B
Go
18 lines
211 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/cobra"
|
||
|
"log"
|
||
|
)
|
||
|
|
||
|
var command = &cobra.Command{
|
||
|
Use: "V2bX",
|
||
|
}
|
||
|
|
||
|
func Run() {
|
||
|
err := command.Execute()
|
||
|
if err != nil {
|
||
|
log.Println("execute failed, error:", err)
|
||
|
}
|
||
|
}
|