wins/cmd/stackdump/cmd.go

14 lines
186 B
Go

package stackdump
import (
"github.com/urfave/cli/v2"
)
func NewCommand() *cli.Command {
return &cli.Command{
Name: "stackdump",
Hidden: true,
Action: _stackDumpAction,
}
}