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.
17 lines
268 B
Go
17 lines
268 B
Go
4 days ago
|
//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")
|
||
|
},
|
||
|
}
|