@@ -10,7 +10,7 @@ import (
10
10
"time"
11
11
12
12
"github.com/spf13/cobra"
13
- "k8s.io/cli-runtime/pkg/genericclioptions "
13
+ "k8s.io/cli-runtime/pkg/genericiooptions "
14
14
cmdutil "k8s.io/kubectl/pkg/cmd/util"
15
15
"k8s.io/kubectl/pkg/util/i18n"
16
16
"sigs.k8s.io/cli-utils/cmd/flagutils"
@@ -23,7 +23,7 @@ import (
23
23
24
24
// GetRunner creates and returns the Runner which stores the cobra command.
25
25
func GetRunner (factory cmdutil.Factory , invFactory inventory.ClientFactory ,
26
- loader manifestreader.ManifestLoader , ioStreams genericclioptions .IOStreams ) * Runner {
26
+ loader manifestreader.ManifestLoader , ioStreams genericiooptions .IOStreams ) * Runner {
27
27
r := & Runner {
28
28
ioStreams : ioStreams ,
29
29
factory : factory ,
@@ -57,14 +57,14 @@ func GetRunner(factory cmdutil.Factory, invFactory inventory.ClientFactory,
57
57
58
58
// Command creates the Runner, returning the cobra command associated with it.
59
59
func Command (f cmdutil.Factory , invFactory inventory.ClientFactory , loader manifestreader.ManifestLoader ,
60
- ioStreams genericclioptions .IOStreams ) * cobra.Command {
60
+ ioStreams genericiooptions .IOStreams ) * cobra.Command {
61
61
return GetRunner (f , invFactory , loader , ioStreams ).Command
62
62
}
63
63
64
64
// Runner encapsulates data necessary to run the destroy command.
65
65
type Runner struct {
66
66
Command * cobra.Command
67
- ioStreams genericclioptions .IOStreams
67
+ ioStreams genericiooptions .IOStreams
68
68
factory cmdutil.Factory
69
69
invFactory inventory.ClientFactory
70
70
loader manifestreader.ManifestLoader
0 commit comments