@@ -10,7 +10,7 @@ import (
1010 "time"
1111
1212 "github.com/spf13/cobra"
13- "k8s.io/cli-runtime/pkg/genericclioptions "
13+ "k8s.io/cli-runtime/pkg/genericiooptions "
1414 cmdutil "k8s.io/kubectl/pkg/cmd/util"
1515 "k8s.io/kubectl/pkg/util/i18n"
1616 "sigs.k8s.io/cli-utils/cmd/flagutils"
@@ -23,7 +23,7 @@ import (
2323
2424// GetRunner creates and returns the Runner which stores the cobra command.
2525func GetRunner (factory cmdutil.Factory , invFactory inventory.ClientFactory ,
26- loader manifestreader.ManifestLoader , ioStreams genericclioptions .IOStreams ) * Runner {
26+ loader manifestreader.ManifestLoader , ioStreams genericiooptions .IOStreams ) * Runner {
2727 r := & Runner {
2828 ioStreams : ioStreams ,
2929 factory : factory ,
@@ -57,14 +57,14 @@ func GetRunner(factory cmdutil.Factory, invFactory inventory.ClientFactory,
5757
5858// Command creates the Runner, returning the cobra command associated with it.
5959func Command (f cmdutil.Factory , invFactory inventory.ClientFactory , loader manifestreader.ManifestLoader ,
60- ioStreams genericclioptions .IOStreams ) * cobra.Command {
60+ ioStreams genericiooptions .IOStreams ) * cobra.Command {
6161 return GetRunner (f , invFactory , loader , ioStreams ).Command
6262}
6363
6464// Runner encapsulates data necessary to run the destroy command.
6565type Runner struct {
6666 Command * cobra.Command
67- ioStreams genericclioptions .IOStreams
67+ ioStreams genericiooptions .IOStreams
6868 factory cmdutil.Factory
6969 invFactory inventory.ClientFactory
7070 loader manifestreader.ManifestLoader
0 commit comments