20 lines
349 B
Go
20 lines
349 B
Go
package get
|
|
|
|
import (
|
|
"errors"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var ErrGetFailed = errors.New("get command failed")
|
|
|
|
func NewCommand() *cobra.Command {
|
|
command := &cobra.Command{
|
|
Use: "get",
|
|
Short: "Retrieve resources from the controller",
|
|
}
|
|
|
|
command.AddCommand(newGetServiceAccountCommand(), newGetBootstrapTokenCommand())
|
|
|
|
return command
|
|
}
|