mirror of https://github.com/linkerd/linkerd2.git
17 lines
311 B
Go
17 lines
311 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func newCmdInternal() *cobra.Command {
|
|
root := &cobra.Command{
|
|
Use: "internal",
|
|
Short: "Used for managing internal linkerd components",
|
|
Long: `Used for managing internal linkerd components.`,
|
|
}
|
|
|
|
root.AddCommand(newCmdDebugSidecar())
|
|
return root
|
|
}
|