mirror of https://github.com/linkerd/linkerd2.git
19 lines
313 B
Go
19 lines
313 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func newCmdAlpha() *cobra.Command {
|
|
alphaCmd := &cobra.Command{
|
|
Use: "alpha",
|
|
Short: "experimental subcommands for Linkerd",
|
|
Args: cobra.NoArgs,
|
|
}
|
|
|
|
alphaCmd.AddCommand(newCmdAlphaStat())
|
|
alphaCmd.AddCommand(newCmdAlphaClients())
|
|
|
|
return alphaCmd
|
|
}
|