mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 18:08:14 -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)
|
|
}
|
|
}
|