...

Source file src/github.com/linkerd/linkerd2/cli/cmd/alpha.go

Documentation: github.com/linkerd/linkerd2/cli/cmd

     1  package cmd
     2  
     3  import (
     4  	"github.com/spf13/cobra"
     5  )
     6  
     7  // newCmdAlpha creates a new cobra command `alpha` which contains experimental subcommands for linkerd
     8  func newCmdAlpha() *cobra.Command {
     9  	alphaCmd := &cobra.Command{
    10  		Use:   "alpha",
    11  		Short: "experimental subcommands for Linkerd",
    12  		Args:  cobra.NoArgs,
    13  	}
    14  
    15  	return alphaCmd
    16  }
    17  

View as plain text