mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 18:08:14 -05:00
ca67855ec9
fix deps cycle update example fix color for X25519 output supported cores message
20 lines
256 B
Go
20 lines
256 B
Go
package cmd
|
|
|
|
import (
|
|
"log"
|
|
|
|
_ "github.com/Yuzuki616/V2bX/core/imports"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var command = &cobra.Command{
|
|
Use: "V2bX",
|
|
}
|
|
|
|
func Run() {
|
|
err := command.Execute()
|
|
if err != nil {
|
|
log.Println("execute failed, error:", err)
|
|
}
|
|
}
|