V2bX/cmd/cmd.go
Yuzuki616 ca67855ec9 update
fix deps cycle
update example
fix color for X25519
output supported cores message
2023-06-08 03:11:42 +08:00

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)
}
}