17 lines
276 B
Go
17 lines
276 B
Go
//go:build windows && arm64
|
|
|
|
package tcpkill
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var Cmd = &cobra.Command{
|
|
Use: "tcpkill",
|
|
Short: "杀掉那个TCP连接",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
fmt.Println("windows on arm is not supported yet")
|
|
},
|
|
}
|