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.
star/tcm/cmd_winarm64.go

17 lines
268 B
Go

//go:build windows && arm64
package tcm
import (
"fmt"
"github.com/spf13/cobra"
)
var Cmd = &cobra.Command{
Use: "tcm",
Short: "TCP连接监视工具",
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("windows on arm is not supported yet")
},
}